-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
35 lines (34 loc) · 1.09 KB
/
tsconfig.json
File metadata and controls
35 lines (34 loc) · 1.09 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
35
// tsconfig.json
{
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
"@api/*": ["src/pages/api/*"],
"@assets/*": ["src/assets/*"],
"@components/*": ["src/components/*"],
"@content/*": ["src/content/*"],
"@data/*": ["src/data/*"],
"@hooks/*": ["src/hooks/*"],
"@images/*": ["src/assets/images/*"],
"@interfaces/*": ["src/interfaces/*"],
"@layouts/*": ["src/layouts/*"],
"@lib/*": ["src/lib/*"],
"@styles/*": ["src/styles/*"],
"@utils/*": ["src/utils/*"]
},
"jsx": "react-jsx",
"jsxImportSource": "react",
"module": "preserve",
"moduleResolution": "bundler",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"types": ["jest"]
},
"include": ["src/**/*", "tests/**/*", "src/env.d.ts"]
}