mirror of
https://github.com/denoland/deno
synced 2024-11-05 18:45:24 +00:00
ea35281d63
refs: #285
18 lines
472 B
JSON
18 lines
472 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/**/*.ts", "js/**/*.js"],
|
|
"exclude": ["js/mock_runtime.js", "js/node_modules"]
|
|
}
|