mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
23 lines
562 B
JSON
23 lines
562 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"noImplicitAny": true,
|
|
"sourceMap": true,
|
|
"removeComments": true,
|
|
"preserveConstEnums": true,
|
|
"declaration": true,
|
|
"target": "es5",
|
|
"lib": ["es2015", "dom"],
|
|
"noEmit": true,
|
|
"noUnusedLocals": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"alwaysStrict": true,
|
|
"noUnusedParameters": false,
|
|
"pretty": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"allowUnreachableCode": false,
|
|
"experimentalDecorators": true
|
|
},
|
|
"include": ["*.ts"]
|
|
}
|