-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
38 lines (38 loc) · 1012 Bytes
/
tsconfig.json
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
35
36
37
38
{
"extends": ["astro/tsconfigs/base"],
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist"],
"compilerOptions": {
"strict": true,
"strictNullChecks": true,
"allowSyntheticDefaultImports": true,
"target": "ESNext",
"moduleResolution": "node",
"jsxImportSource": "react",
"jsx": "react-jsx",
"types": ["vite/client"],
"baseUrl": ".",
"paths": {
"@const/*": ["./src/const/*"],
"@infrastructure/*": ["./src/infrastructure/*"],
"@domain/*": ["./src/domain/*"],
"@actions/*": ["./src/actions/*"],
"@application/*": ["./src/application/*"],
"@modules/*": ["./src/ui/modules/*"],
"@utils/*": ["./src/utils/*"],
"@assets/*": ["./src/ui/assets/*"],
"@styles/*": ["./src/ui/styles/*"],
"@data/*": ["./src/data/*"],
"@shared/*": ["./src/shared/*"],
"@content/*": ["./src/content/*"],
"@i18n/*": ["./src/i18n/*"],
"@mocks/*": ["./src/mocks/*"],
"@types/*": ["./src/types/*"]
},
"plugins": [
{
"name": "@astrojs/ts-plugin"
}
]
}
}