2019-07-16 08:40:01 +02:00
|
|
|
{
|
2020-03-03 23:59:19 +01:00
|
|
|
"compileOnSave": false,
|
2019-07-16 08:40:01 +02:00
|
|
|
"compilerOptions": {
|
|
|
|
"target": "esnext",
|
|
|
|
"module": "commonjs",
|
|
|
|
"declaration": true,
|
|
|
|
"noImplicitAny": false,
|
2020-06-30 21:55:14 +02:00
|
|
|
"incremental": false,
|
2019-07-16 08:40:01 +02:00
|
|
|
"strict": true,
|
|
|
|
"strictNullChecks": true,
|
2019-09-26 18:22:14 +02:00
|
|
|
"resolveJsonModule": true,
|
2019-07-16 08:40:01 +02:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
},
|
|
|
|
"exclude": [
|
2020-03-03 23:59:19 +01:00
|
|
|
"**/build",
|
2021-04-03 13:13:31 +02:00
|
|
|
"node_modules",
|
2020-03-03 23:59:19 +01:00
|
|
|
"**/node_modules",
|
|
|
|
"**/coverage",
|
|
|
|
"**/*.spec.ts",
|
|
|
|
"**/test",
|
|
|
|
"**/__tests__",
|
|
|
|
"**/*.test.ts"
|
2019-07-16 08:40:01 +02:00
|
|
|
]
|
|
|
|
}
|