mirror of
https://github.com/denoland/deno.git
synced 2024-11-26 16:09:27 -05:00
36fa1cea4a
Update runtime to use lib.deno.d.ts Add proper console declaration Upgrade prettier (There was an issue formatting lib.deno.d.ts)
23 lines
571 B
JSON
23 lines
571 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"baseUrl": ".",
|
|
"module": "esnext",
|
|
"noImplicitAny": true,
|
|
"sourceMap": true,
|
|
"removeComments": true,
|
|
"preserveConstEnums": true,
|
|
"target": "esnext",
|
|
"moduleResolution": "node",
|
|
"noImplicitReturns": true,
|
|
"pretty": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"allowUnreachableCode": false,
|
|
"experimentalDecorators": true,
|
|
"paths": {
|
|
"*": ["*", "out/debug/*", "out/default/*", "out/release/*"]
|
|
}
|
|
},
|
|
"include": ["js/main.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|