1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 15:24:46 -05:00
denoland-deno/tsconfig.json
2018-07-26 11:38:03 -04:00

23 lines
571 B
JSON

{
"compilerOptions": {
"allowJs": true,
"baseUrl": ".",
"module": "esnext",
"noImplicitAny": true,
"sourceMap": true,
"removeComments": true,
"preserveConstEnums": true,
"target": "es2017",
"moduleResolution": "node",
"noImplicitReturns": true,
"pretty": true,
"noFallthroughCasesInSwitch": true,
"allowUnreachableCode": false,
"experimentalDecorators": true,
"paths": {
"*": ["*", "out/debug/*", "out/default/*", "out/release/*"]
}
},
"include": ["js/main.ts"],
"exclude": ["node_modules"]
}