0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-02 12:50:43 -05:00
denoland-deno/tsconfig.json

24 lines
571 B
JSON
Raw Normal View History

2018-06-12 03:54:55 +02:00
{
"compilerOptions": {
"allowJs": true,
2018-07-26 13:07:50 +10:00
"baseUrl": ".",
2018-07-22 03:14:52 +02:00
"module": "esnext",
2018-06-12 03:54:55 +02:00
"noImplicitAny": true,
"sourceMap": true,
"removeComments": true,
"preserveConstEnums": true,
"target": "esnext",
2018-07-22 03:14:52 +02:00
"moduleResolution": "node",
2018-06-12 03:54:55 +02:00
"noImplicitReturns": true,
"pretty": true,
"noFallthroughCasesInSwitch": true,
"allowUnreachableCode": false,
2018-07-26 13:07:50 +10:00
"experimentalDecorators": true,
"paths": {
2018-07-26 11:01:17 -04:00
"*": ["*", "out/debug/*", "out/default/*", "out/release/*"]
2018-07-26 13:07:50 +10:00
}
2018-06-12 03:54:55 +02:00
},
2018-07-06 15:00:45 -04:00
"include": ["js/main.ts"],
"exclude": ["node_modules"]
2018-06-12 03:54:55 +02:00
}