hookshot/tsconfig.json

36 lines
863 B
JSON
Raw Permalink Normal View History

2019-08-02 19:12:03 +01:00
{
"extends": "@tsconfig/node22/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,
"inlineSourceMap": true,
"inlineSources": true,
"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
}