2021-12-08 19:22:39 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "es2015",
|
|
|
|
"noImplicitAny": true,
|
2021-12-10 20:36:42 +00:00
|
|
|
"target": "es2015",
|
|
|
|
"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
|
|
|
},
|
2021-12-10 20:51:35 +00:00
|
|
|
"include": ["../apps/**/*", "./**/*"],
|
2021-12-14 20:42:58 +00:00
|
|
|
// this app is excluded because it was built before this configuration was created and is using its own
|
|
|
|
"exclude": ["../apps/hebrew_calendar"]
|
2021-12-08 19:22:39 +00:00
|
|
|
}
|