2021-04-07 14:52:38 +00:00
|
|
|
{
|
|
|
|
"extends": "@tsconfig/node12/tsconfig.json",
|
|
|
|
"compilerOptions": {
|
|
|
|
"moduleResolution": "node", // Tell tsc to look in node_modules for modules
|
|
|
|
"strict": true, // That implies alwaysStrict, noImplicitAny, noImplicitThis
|
|
|
|
|
|
|
|
"alwaysStrict": true, // should already be true because of strict:true
|
|
|
|
"noImplicitAny": true, // should already be true because of strict:true
|
|
|
|
"noImplicitThis": true, // should already be true because of strict:true
|
|
|
|
"noImplicitReturns": true,
|
2024-05-25 12:39:45 +00:00
|
|
|
"noImplicitOverride": true,
|
2021-04-07 14:52:38 +00:00
|
|
|
"strictBindCallApply": true, // should already be true because of strict:true
|
2024-05-25 12:39:45 +00:00
|
|
|
"noUnusedLocals": false, // works better as a linter error/warning
|
2021-04-07 14:52:38 +00:00
|
|
|
"removeComments": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
|
2021-04-08 00:43:13 +00:00
|
|
|
"baseUrl": "./",
|
2021-05-01 16:30:21 +00:00
|
|
|
"outDir": "../dist/",
|
2021-04-08 00:43:13 +00:00
|
|
|
"paths": {}
|
2021-04-07 14:52:38 +00:00
|
|
|
},
|
2021-05-01 16:30:21 +00:00
|
|
|
"include": [
|
|
|
|
"./**/*",
|
|
|
|
"../shared/**/*"
|
|
|
|
],
|
2021-04-07 14:52:38 +00:00
|
|
|
"exclude": []
|
|
|
|
}
|