-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtsconfig.json
More file actions
31 lines (31 loc) · 1.05 KB
/
Copy pathtsconfig.json
File metadata and controls
31 lines (31 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"compilerOptions": {
"outDir": "./dist/",
"noImplicitAny": true,
"module": "es6",
"target": "es5",
"jsx": "react",
"allowJs": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"typeRoots": ["./node_modules/@types", "./frontend/types"],
"baseUrl": ".",
"paths": {
"@components/*": ["frontend/scripts/components/*"],
"@hooks/*": ["frontend/scripts/hooks/*"],
"@store/*": ["frontend/scripts/store/*"],
"@services/*": ["frontend/scripts/services/*"],
"@images/*": ["frontend/images/*"],
"@utils/*": ["frontend/scripts/utils/*"],
"@theme": ["frontend/scripts/theme/index.ts"],
"@theme/*": ["frontend/scripts/theme/*"],
"@animations/*": ["frontend/assets/animations/*"],
"scripts/*": ["frontend/scripts/*"]
}
},
"include": [
"frontend/**/*",
"frontend/types/globals.d.ts"
]
}