1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-18 03:44:05 -05:00
denoland-deno/tsconfig.json

24 lines
585 B
JSON
Raw Normal View History

2018-06-12 03:54:55 +02:00
{
"compilerOptions": {
2018-08-07 13:27:31 -07:00
"allowUnreachableCode": false,
2018-07-26 13:07:50 +10:00
"baseUrl": ".",
2018-07-22 03:14:52 +02:00
"module": "esnext",
"moduleResolution": "node",
2018-06-12 03:54:55 +02:00
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
2018-08-07 13:27:31 -07:00
"noLib": true,
2018-08-15 09:40:30 -07:00
"noUnusedLocals": true,
2018-07-26 13:07:50 +10:00
"paths": {
2018-07-26 11:01:17 -04:00
"*": ["*", "out/debug/*", "out/default/*", "out/release/*"]
2018-08-07 13:27:31 -07:00
},
"preserveConstEnums": true,
"pretty": true,
"removeComments": true,
"sourceMap": true,
2018-08-15 09:40:30 -07:00
"strict": true,
2018-08-07 13:27:31 -07:00
"target": "esnext",
"types": []
2018-06-12 03:54:55 +02:00
},
2018-08-07 13:27:31 -07:00
"files": ["node_modules/typescript/lib/lib.esnext.d.ts", "js/main.ts"]
2018-06-12 03:54:55 +02:00
}