mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
29 lines
641 B
JSON
29 lines
641 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",
|
|
"jsx": "react",
|
|
"types": []
|
|
},
|
|
"files": [
|
|
"js/lib.web_assembly.d.ts",
|
|
"js/lib.deno_runtime.d.ts",
|
|
"js/main.ts",
|
|
"js/compiler.ts"
|
|
]
|
|
}
|