2018-06-12 03:54:55 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2018-10-25 06:26:21 +11:00
|
|
|
"allowJs": true,
|
2018-08-07 13:27:31 -07:00
|
|
|
"allowUnreachableCode": false,
|
2018-07-26 13:07:50 +10:00
|
|
|
"baseUrl": ".",
|
2018-10-25 06:26:21 +11:00
|
|
|
"checkJs": true,
|
2019-03-12 01:53:18 +11:00
|
|
|
"lib": ["esnext"],
|
2018-07-22 03:14:52 +02:00
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
2018-06-12 03:54:55 +02:00
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
2018-08-15 09:40:30 -07:00
|
|
|
"noUnusedLocals": true,
|
2018-07-26 13:07:50 +10:00
|
|
|
"paths": {
|
2018-11-08 10:38:20 -08:00
|
|
|
"*": ["*", "target/debug/*", "target/release/*"]
|
2018-08-07 13:27:31 -07:00
|
|
|
},
|
|
|
|
"preserveConstEnums": true,
|
|
|
|
"pretty": true,
|
|
|
|
"removeComments": true,
|
2018-10-31 14:50:40 +11:00
|
|
|
"resolveJsonModule": true,
|
2018-08-07 13:27:31 -07:00
|
|
|
"sourceMap": true,
|
2018-08-15 09:40:30 -07:00
|
|
|
"strict": true,
|
2018-08-07 13:27:31 -07:00
|
|
|
"target": "esnext",
|
|
|
|
"types": []
|
2018-06-12 03:54:55 +02:00
|
|
|
},
|
2019-03-26 23:22:07 +11:00
|
|
|
"files": [
|
|
|
|
"js/lib.web_assembly.d.ts",
|
|
|
|
"core/core.d.ts",
|
2019-03-30 14:45:36 -04:00
|
|
|
"core/libdeno/libdeno.d.ts",
|
2019-03-26 23:22:07 +11:00
|
|
|
"js/main.ts",
|
|
|
|
"js/compiler.ts"
|
|
|
|
]
|
2018-06-12 03:54:55 +02:00
|
|
|
}
|