1
0
Fork 0
BangleApps/typescript/tsconfig.json

20 lines
570 B
JSON
Raw Normal View History

{
"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:51:35 +00:00
"include": ["../apps/**/*", "./**/*"],
// this app is excluded because it was built before this configuration was created and is using its own
"exclude": ["../apps/hebrew_calendar"]
}