20 lines
570 B
JSON
20 lines
570 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "es2015",
|
|
"noImplicitAny": true,
|
|
"target": "es2015",
|
|
"allowUnreachableCode": false,
|
|
"allowUnusedLabels": false,
|
|
"noImplicitOverride": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"strict": true
|
|
},
|
|
"include": ["../apps/**/*", "./**/*"],
|
|
// this app is excluded because it was built before this configuration was created and is using its own
|
|
"exclude": ["../apps/hebrew_calendar"]
|
|
}
|