0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-30 09:08:00 -04:00
denoland-deno/tsconfig.json
2018-07-22 03:16:17 +02:00

19 lines
463 B
JSON

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