1
0
Fork 0
BangleApps/typescript/tsconfig.json

20 lines
606 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/**/*", "./**/*"],
2021-12-10 21:04:43 +00:00
// these apps have been excluded because they were built before this configuration was created and are using their own
2021-12-10 20:51:35 +00:00
"exclude": ["../apps/banglerun", "../apps/hebrew_calendar"]
}