1
0
Fork 0
spacetac/tsconfig.json

20 lines
507 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",
2017-03-09 17:11:00 +00:00
"strictNullChecks": true,
2016-10-26 21:15:04 +00:00
"sourceMap": true,
"target": "es5"
},
2017-01-23 23:07:54 +00:00
"include": [
"src"
2016-10-26 21:15:04 +00:00
]
2017-01-03 21:53:36 +00:00
}