1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-26 16:09:27 -05:00
denoland-deno/tsconfig.json
Kitson Kelly 36fa1cea4a Upgrade TypeScript (3.0.1)
Update runtime to use lib.deno.d.ts

Add proper console declaration

Upgrade prettier (There was an issue formatting lib.deno.d.ts)
2018-07-31 20:47:49 -04:00

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"]
}