1
0
Fork 0
spacetac/tsconfig.json

22 lines
552 B
JSON
Raw Normal View History

2016-10-26 21:15:04 +00:00
{
"compilerOptions": {
2017-01-03 22:26:56 +00:00
"alwaysStrict": true,
2016-10-26 21:15:04 +00:00
"module": "system",
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": false,
"noImplicitThis": true,
"noImplicitReturns": true,
"removeComments": true,
"preserveConstEnums": true,
2017-01-03 21:53:36 +00:00
"out": "out/build.js",
2016-10-26 21:15:04 +00:00
"strictNullChecks": false,
"sourceMap": true,
"target": "es5"
},
"exclude": [
"out",
"coverage",
"node_modules"
]
2017-01-03 21:53:36 +00:00
}