CabinGame/Program/tsconfig.json
2020-02-17 12:56:41 +01:00

16 lines
No EOL
355 B
JSON

{
"compilerOptions": {
"sourceMap": true,
"target": "es6",
"moduleResolution": "Node",
//have harsh code standards
"pretty": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noImplicitReturns": true,
"allowUnreachableCode": false,
"noImplicitUseStrict": true
}
}