2021-12-08 19:22:39 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-01-20 20:23:17 +00:00
|
|
|
"module": "commonjs",
|
2021-12-08 19:22:39 +00:00
|
|
|
"noImplicitAny": true,
|
2022-01-20 20:23:17 +00:00
|
|
|
"target": "es6",
|
2021-12-10 20:36:42 +00:00
|
|
|
"allowUnreachableCode": false,
|
|
|
|
"allowUnusedLabels": false,
|
|
|
|
"noImplicitOverride": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
2021-12-10 21:36:22 +00:00
|
|
|
"strict": true
|
2021-12-10 20:19:01 +00:00
|
|
|
},
|
2022-01-20 19:58:26 +00:00
|
|
|
"include": ["../apps/**/*", "./**/*"],
|
2021-12-08 19:22:39 +00:00
|
|
|
}
|