summaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json19
1 files changed, 15 insertions, 4 deletions
diff --git a/tsconfig.json b/tsconfig.json
index cde91dd..7545725 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -3,10 +3,21 @@
"compilerOptions": {
"baseUrl": ".",
"paths": {
- "@assets/*": ["src/assets/*"],
- "@components/*": ["src/components/*"],
- "@layouts/*": ["src/layouts/*"],
- "@styles/*": ["src/styles/*"]
+ "@assets/*": [
+ "src/assets/*"
+ ],
+ "@components/*": [
+ "src/components/*"
+ ],
+ "@layouts/*": [
+ "src/layouts/*"
+ ],
+ "@pages/*": [
+ "src/pages/*"
+ ],
+ "@styles/*": [
+ "src/styles/*"
+ ]
}
}
}