2020-04-03 14:56:21 +02:00
|
|
|
{
|
2021-05-17 14:30:54 +02:00
|
|
|
// "include": ["src/**/*", "webpack.config.ts"],
|
|
|
|
|
2021-05-11 17:37:21 +02:00
|
|
|
"extends": "@tsconfig/svelte/tsconfig.json",
|
2020-04-03 14:56:21 +02:00
|
|
|
"compilerOptions": {
|
|
|
|
"outDir": "./dist/",
|
|
|
|
"sourceMap": true,
|
|
|
|
"moduleResolution": "node",
|
2021-05-17 14:30:54 +02:00
|
|
|
//"module": "CommonJS",
|
|
|
|
"module": "ESNext",
|
2021-05-12 11:45:01 +02:00
|
|
|
"target": "ES2017",
|
2021-04-11 11:15:59 +02:00
|
|
|
"declaration": false,
|
2020-06-22 15:00:23 +02:00
|
|
|
"downlevelIteration": true,
|
2020-04-03 14:56:21 +02:00
|
|
|
"jsx": "react",
|
2020-06-03 11:18:53 +02:00
|
|
|
"allowJs": true,
|
2021-02-03 23:28:46 +01:00
|
|
|
"esModuleInterop": true,
|
2020-06-03 23:17:52 +02:00
|
|
|
|
2021-05-12 09:13:25 +02:00
|
|
|
"importsNotUsedAsValues": "error",
|
|
|
|
|
2021-02-03 23:28:46 +01:00
|
|
|
"strict": true, /* Enable all strict type-checking options. */
|
|
|
|
"noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */
|
|
|
|
"strictNullChecks": true, /* Enable strict null checks. */
|
|
|
|
"strictFunctionTypes": true, /* Enable strict checking of function types. */
|
|
|
|
"strictBindCallApply": true, /* Enable strict 'bind', 'call', and 'apply' methods on functions. */
|
|
|
|
"strictPropertyInitialization": true, /* Enable strict checking of property initialization in classes. */
|
|
|
|
"noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */
|
|
|
|
"alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */
|
2020-06-03 23:17:52 +02:00
|
|
|
|
2021-02-03 23:28:46 +01:00
|
|
|
"noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
|
|
|
|
"noFallthroughCasesInSwitch": true /* Report errors for fallthrough cases in switch statement. */
|
2020-04-03 14:56:21 +02:00
|
|
|
}
|
|
|
|
}
|