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.
24 lines
651 B
24 lines
651 B
{
|
|
"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/**/*.ts"],
|
|
"exclude": ["node_modules/*", "public/*"]
|
|
}
|