-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
30 lines (30 loc) · 864 Bytes
/
Copy pathtsconfig.json
File metadata and controls
30 lines (30 loc) · 864 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
25
26
27
28
29
30
{
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"noUncheckedIndexedAccess": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"exactOptionalPropertyTypes": true,
"useUnknownInCatchVariables": true,
"declaration": true,
"ignoreDeprecations": "6.0",
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
"@components/*": ["src/components/*"],
"@lib/*": ["src/lib/*"],
"@layouts/*": ["src/layouts/*"],
"@pages/*": ["src/pages/*"],
"@db/*": ["src/db/*"]
},
"types": ["astro/client"],
"skipLibCheck": true,
"plugins": [
{
"name": "@astrojs/ts-plugin"
}
],
},
"include": ["src/**/*", "astro.config.*", "drizzle.config.*", "wrangler.jsonc"],
"exclude": ["src/db/seed.ts", "src/db/seeds/*.ts", "**/*.test.ts", "**/*.spec.ts"]
}