mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
30 lines
676 B
JSON
30 lines
676 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"allowUnreachableCode": false,
|
|
"baseUrl": ".",
|
|
"checkJs": true,
|
|
"lib": ["esnext"],
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": true,
|
|
"preserveConstEnums": true,
|
|
"pretty": true,
|
|
"removeComments": true,
|
|
"resolveJsonModule": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"target": "esnext",
|
|
"types": []
|
|
},
|
|
"files": [
|
|
"js/lib.web_assembly.d.ts",
|
|
"js/lib.deno_runtime.d.ts",
|
|
"core/core.d.ts",
|
|
"core/libdeno/libdeno.d.ts",
|
|
"js/main.ts",
|
|
"js/compiler.ts"
|
|
]
|
|
}
|