disbrowser/src/main/ts/tsconfig.json

15 lines
296 B
JSON
Raw Normal View History

2019-01-11 03:19:08 +00:00
{
"compilerOptions": {
"module": "amd",
2019-01-11 05:09:12 +00:00
"target": "es2016",
2019-01-11 03:19:08 +00:00
"strictNullChecks": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"removeComments": true,
"sourceMap": true,
"outFile": "../resources/public/disbrowser.js"
},
"include": [
"*.ts"
]
}