mirror of
https://github.com/denoland/deno
synced 2024-11-05 18:45:24 +00:00
25 lines
618 B
JSON
25 lines
618 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"module": "commonjs",
|
|
"noImplicitAny": true,
|
|
"baseUrl": ".",
|
|
"removeComments": true,
|
|
"preserveConstEnums": true,
|
|
"declaration": true,
|
|
"target": "es2017",
|
|
"lib": ["es2017", "dom"],
|
|
"noEmit": true,
|
|
"noUnusedLocals": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"alwaysStrict": true,
|
|
"noUnusedParameters": false,
|
|
"pretty": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"allowUnreachableCode": false,
|
|
"experimentalDecorators": true
|
|
},
|
|
"include": ["*.ts", "*.js"],
|
|
"exclude": ["tests.ts"]
|
|
}
|