mirror of
https://github.com/denoland/deno.git
synced 2024-10-30 09:08:00 -04:00
19 lines
463 B
JSON
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"]
|
|
}
|