1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/tsconfig.json

30 lines
657 B
JSON
Raw Normal View History

2018-06-11 21:54:55 -04:00
{
"compilerOptions": {
2018-10-24 15:26:21 -04:00
"allowJs": true,
2018-08-07 16:27:31 -04:00
"allowUnreachableCode": false,
2018-07-25 23:07:50 -04:00
"baseUrl": ".",
2018-10-24 15:26:21 -04:00
"checkJs": true,
2019-03-11 10:53:18 -04:00
"lib": ["esnext"],
2018-07-21 21:14:52 -04:00
"module": "esnext",
"moduleResolution": "node",
2018-06-11 21:54:55 -04:00
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
2018-08-15 12:40:30 -04:00
"noUnusedLocals": true,
2018-08-07 16:27:31 -04:00
"preserveConstEnums": true,
"pretty": true,
"removeComments": true,
"resolveJsonModule": true,
2018-08-07 16:27:31 -04:00
"sourceMap": true,
2018-08-15 12:40:30 -04:00
"strict": true,
2018-08-07 16:27:31 -04:00
"target": "esnext",
2019-10-02 10:46:36 -04:00
"jsx": "react",
2018-08-07 16:27:31 -04:00
"types": []
2018-06-11 21:54:55 -04:00
},
"files": [
"cli/js/lib.web_assembly.d.ts",
"cli/js/lib.deno_runtime.d.ts",
"cli/js/main.ts",
"cli/js/compiler.ts"
]
2018-06-11 21:54:55 -04:00
}