deno/tsconfig.json

33 lines
721 B
JSON
Raw Normal View History

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