34 lines
814 B
JSON
34 lines
814 B
JSON
{
|
|
"extends": "./.svelte-kit/tsconfig.json",
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"moduleResolution": "bundler",
|
|
"target": "ES2020",
|
|
"module": "ESNext",
|
|
"lib": [
|
|
"ES2020",
|
|
"DOM",
|
|
"DOM.Iterable"
|
|
],
|
|
"allowSyntheticDefaultImports": true,
|
|
"isolatedModules": true,
|
|
"verbatimModuleSyntax": true
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"app.d.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules/**",
|
|
".svelte-kit/**",
|
|
"build/**",
|
|
"dist/**"
|
|
]
|
|
} |