mirror of
https://github.com/denoland/deno.git
synced 2024-11-13 16:26:08 -05:00
26 lines
658 B
JSON
26 lines
658 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"allowUnreachableCode": false,
|
|
"baseUrl": ".",
|
|
"checkJs": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noLib": true,
|
|
"noUnusedLocals": true,
|
|
"paths": {
|
|
"*": ["*", "out/debug/*", "out/default/*", "out/release/*"]
|
|
},
|
|
"preserveConstEnums": true,
|
|
"pretty": true,
|
|
"removeComments": true,
|
|
"resolveJsonModule": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"target": "esnext",
|
|
"types": []
|
|
},
|
|
"files": ["node_modules/typescript/lib/lib.esnext.d.ts", "js/main.ts"]
|
|
}
|