mirror of
https://github.com/denoland/deno
synced 2024-11-05 18:45:24 +00:00
18 lines
433 B
JSON
18 lines
433 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"module": "commonjs",
|
|
"noImplicitAny": true,
|
|
"sourceMap": true,
|
|
"removeComments": true,
|
|
"preserveConstEnums": true,
|
|
"target": "es2017",
|
|
"noImplicitReturns": true,
|
|
"pretty": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"allowUnreachableCode": false,
|
|
"experimentalDecorators": true
|
|
},
|
|
"include": ["js/main.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|