-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
34 lines (34 loc) · 1.13 KB
/
Copy pathtsconfig.json
File metadata and controls
34 lines (34 loc) · 1.13 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
32
33
34
{
"extends": "astro/tsconfigs/base",
"include": [".astro/types.d.ts", "**/*", ".postcss.config.mjs"],
"exclude": ["dist", "node_modules"],
"compilerOptions": {
"baseUrl": ".",
"jsx": "react-jsx",
"jsxImportSource": "react",
"paths": {
"@components/*": ["src/css-summoner/ui/components/*"],
"@layouts/*": ["src/css-summoner/ui/layouts/*"],
"@hooks/*": ["src/css-summoner/ui/hooks/*"],
"@templates/*": ["src/css-summoner/ui/templates/*"],
"@ui/*": ["src/css-summoner/ui/*"],
"@styles/*": ["src/styles/*"],
"@stylesCss/*": ["src/css-summoner/styles/*"],
"@configs/*": ["src/css-summoner/configs/*"],
"@config/*": ["src/css-summoner/config/*"],
"@data/*": ["src/css-summoner/data/*"],
"@scripts/*": ["src/css-summoner/scripts/*"],
"@generators/*": ["src/css-summoner/scripts/generators/*"],
"@assets/*": ["src/assets/*"],
"@images/*": ["src/assets/images/*"],
"@/*": ["./src/*"],
"@@/*": ["./*"],
"@ui-data/*": ["src/css-summoner/ui/data/*"]
},
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true
}
}