CabinGame/Program/tsconfig.json

16 lines
355 B
JSON
Raw Permalink Normal View History

{
"compilerOptions": {
"sourceMap": true,
"target": "es6",
2020-02-17 11:56:41 +00:00
"moduleResolution": "Node",
//have harsh code standards
"pretty": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noImplicitReturns": true,
"allowUnreachableCode": false,
"noImplicitUseStrict": true
}
}