2018-06-12 03:54:55 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"allowJs": true,
|
2018-07-26 13:07:50 +10:00
|
|
|
"baseUrl": ".",
|
2018-07-22 03:14:52 +02:00
|
|
|
"module": "esnext",
|
2018-06-12 03:54:55 +02:00
|
|
|
"noImplicitAny": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"removeComments": true,
|
|
|
|
"preserveConstEnums": true,
|
2018-07-27 16:51:19 +10:00
|
|
|
"target": "esnext",
|
2018-07-22 03:14:52 +02:00
|
|
|
"moduleResolution": "node",
|
2018-06-12 03:54:55 +02:00
|
|
|
"noImplicitReturns": true,
|
|
|
|
"pretty": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"allowUnreachableCode": false,
|
2018-07-26 13:07:50 +10:00
|
|
|
"experimentalDecorators": true,
|
|
|
|
"paths": {
|
2018-07-26 11:01:17 -04:00
|
|
|
"*": ["*", "out/debug/*", "out/default/*", "out/release/*"]
|
2018-07-26 13:07:50 +10:00
|
|
|
}
|
2018-06-12 03:54:55 +02:00
|
|
|
},
|
2018-07-06 15:00:45 -04:00
|
|
|
"include": ["js/main.ts"],
|
|
|
|
"exclude": ["node_modules"]
|
2018-06-12 03:54:55 +02:00
|
|
|
}
|