1
0
Fork 0
BangleApps/typescript/tsconfig.json

19 lines
451 B
JSON
Raw Normal View History

{
"compilerOptions": {
"module": "commonjs",
"noImplicitAny": true,
"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,
2022-07-19 07:49:47 +00:00
"strict": true,
"typeRoots": ["./types"]
},
2022-07-19 07:49:47 +00:00
"include": ["../apps/**/*", "./**/*"]
}