You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es6",
|
|
|
|
"module": "es6",
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"importHelpers": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"baseUrl": ".",
|
|
|
|
"types": [
|
|
|
|
"svelte"
|
|
|
|
],
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"skipDefaultLibCheck": true,
|
|
|
|
"strictNullChecks": false,
|
|
|
|
"declaration": false,
|
|
|
|
"downlevelIteration": true
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src/**/*"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules/*",
|
|
|
|
"public/*"
|
|
|
|
],
|
|
|
|
"extends": "@tsconfig/svelte/tsconfig.json"
|
|
|
|
}
|