-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
24 lines (23 loc) · 628 Bytes
/
tsconfig.json
File metadata and controls
24 lines (23 loc) · 628 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"extends": "astro/tsconfigs/strict",
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist"],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"~/*": ["src/*"],
"$assets/*": ["src/assets/*"],
"$components/*": ["src/components/*"],
"$data/*": ["src/data/*"],
"$hooks/*": ["src/hooks/*"],
"$layouts/*": ["src/layouts/*"],
"$plugins/*": ["plugins/*"],
"$scripts/*": ["src/scripts/*"],
"$styles/*": ["src/styles/*"],
"$types/*": ["src/types/*"],
"$utils/*": ["src/utils/*"]
},
"jsx": "react-jsx",
"jsxImportSource": "react"
}
}