mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
19 lines
456 B
JSON
19 lines
456 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"module": "commonjs",
|
|
"noImplicitAny": true,
|
|
"sourceMap": true,
|
|
"removeComments": true,
|
|
"preserveConstEnums": true,
|
|
"declaration": true,
|
|
"target": "es2017",
|
|
"noImplicitReturns": true,
|
|
"pretty": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"allowUnreachableCode": false,
|
|
"experimentalDecorators": true
|
|
},
|
|
"include": ["*.ts", "*.js"],
|
|
"exclude": ["tests.ts"]
|
|
}
|