mirror of https://github.com/espruino/BangleApps
20 lines
465 B
JSON
20 lines
465 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"module": "commonjs",
|
||
|
"noImplicitAny": true,
|
||
|
"target": "es6",
|
||
|
"allowUnreachableCode": false,
|
||
|
"allowUnusedLabels": false,
|
||
|
"noImplicitOverride": true,
|
||
|
"noImplicitReturns": true,
|
||
|
"noImplicitThis": true,
|
||
|
"noLib": true,
|
||
|
"noUncheckedIndexedAccess": true,
|
||
|
"noUnusedLocals": true,
|
||
|
"noUnusedParameters": true,
|
||
|
"strict": true,
|
||
|
"typeRoots": ["./typescript/types"]
|
||
|
},
|
||
|
"include": ["./**/*"]
|
||
|
}
|