2019-08-02 19:12:03 +01:00
|
|
|
{
|
2022-03-07 20:01:51 +00:00
|
|
|
"extends": "@tsconfig/node14/tsconfig.json",
|
2019-08-02 19:12:03 +01:00
|
|
|
"compilerOptions": {
|
|
|
|
"incremental": true,
|
|
|
|
"declaration": false,
|
|
|
|
"outDir": "./lib",
|
|
|
|
"rootDir": "./src",
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"strictFunctionTypes": true,
|
|
|
|
"strictBindCallApply": true,
|
|
|
|
"strictPropertyInitialization": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"alwaysStrict": true,
|
|
|
|
/* Additional Checks */
|
2021-03-15 23:57:27 +00:00
|
|
|
"noUnusedLocals": false,
|
2019-08-06 18:40:15 +01:00
|
|
|
"noUnusedParameters": false,
|
2019-08-02 19:12:03 +01:00
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"inlineSourceMap": true,
|
|
|
|
"inlineSources": true,
|
2022-01-06 17:13:58 +00:00
|
|
|
"allowJs": true,
|
2019-08-02 19:12:03 +01:00
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
2021-11-22 17:33:13 +00:00
|
|
|
// TODO: Type errors
|
|
|
|
"useUnknownInCatchVariables": false,
|
2019-08-06 15:05:32 +01:00
|
|
|
},
|
2020-12-12 20:29:33 +00:00
|
|
|
"include": [
|
|
|
|
"src/**/*"
|
|
|
|
],
|
2019-08-06 15:05:32 +01:00
|
|
|
"exclude": [
|
2020-12-12 13:19:55 +00:00
|
|
|
"tests/**/*",
|
|
|
|
"web/**/*"
|
2019-08-06 15:05:32 +01:00
|
|
|
]
|
2019-08-02 19:12:03 +01:00
|
|
|
}
|