forked from ParadigmEducation/snowflake-notes
30 lines
616 B
JSON
30 lines
616 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"jsx": "preserve",
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"allowJs": false,
|
|
"isolatedModules": true
|
|
},
|
|
"include": [
|
|
"src",
|
|
"src/env.d.ts",
|
|
"astro.config.mjs",
|
|
".astro/types.d.ts"
|
|
],
|
|
"exclude": [
|
|
"dist",
|
|
"node_modules",
|
|
"ref"
|
|
]
|
|
}
|