2018-06-11 21:54:55 -04:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2018-10-24 15:26:21 -04:00
|
|
|
"allowJs": true,
|
2018-08-07 16:27:31 -04:00
|
|
|
"allowUnreachableCode": false,
|
2018-07-25 23:07:50 -04:00
|
|
|
"baseUrl": ".",
|
2018-10-24 15:26:21 -04:00
|
|
|
"checkJs": true,
|
2018-07-21 21:14:52 -04:00
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
2018-06-11 21:54:55 -04:00
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
2018-08-07 16:27:31 -04:00
|
|
|
"noLib": true,
|
2018-08-15 12:40:30 -04:00
|
|
|
"noUnusedLocals": true,
|
2018-07-25 23:07:50 -04:00
|
|
|
"paths": {
|
2018-11-08 13:38:20 -05:00
|
|
|
"*": ["*", "target/debug/*", "target/release/*"]
|
2018-08-07 16:27:31 -04:00
|
|
|
},
|
|
|
|
"preserveConstEnums": true,
|
|
|
|
"pretty": true,
|
|
|
|
"removeComments": true,
|
2018-10-30 23:50:40 -04:00
|
|
|
"resolveJsonModule": true,
|
2018-08-07 16:27:31 -04:00
|
|
|
"sourceMap": true,
|
2018-08-15 12:40:30 -04:00
|
|
|
"strict": true,
|
2018-08-07 16:27:31 -04:00
|
|
|
"target": "esnext",
|
|
|
|
"types": []
|
2018-06-11 21:54:55 -04:00
|
|
|
},
|
2018-08-07 16:27:31 -04:00
|
|
|
"files": ["node_modules/typescript/lib/lib.esnext.d.ts", "js/main.ts"]
|
2018-06-11 21:54:55 -04:00
|
|
|
}
|