2018-06-11 21:54:55 -04:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"allowJs": true,
|
2018-07-21 21:14:52 -04:00
|
|
|
"module": "esnext",
|
2018-06-11 21:54:55 -04:00
|
|
|
"noImplicitAny": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"removeComments": true,
|
|
|
|
"preserveConstEnums": true,
|
|
|
|
"target": "es2017",
|
2018-07-21 21:14:52 -04:00
|
|
|
"moduleResolution": "node",
|
2018-06-11 21:54:55 -04:00
|
|
|
"noImplicitReturns": true,
|
|
|
|
"pretty": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"allowUnreachableCode": false,
|
|
|
|
"experimentalDecorators": true
|
|
|
|
},
|
2018-07-06 15:00:45 -04:00
|
|
|
"include": ["js/main.ts"],
|
|
|
|
"exclude": ["node_modules"]
|
2018-06-11 21:54:55 -04:00
|
|
|
}
|