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

25 lines
594 B
JSON
Raw Normal View History

2018-05-13 23:32:01 -04:00
{
"compilerOptions": {
2018-05-14 01:30:56 -04:00
"allowJs": true,
2018-05-13 23:32:01 -04:00
"module": "commonjs",
"noImplicitAny": true,
"sourceMap": true,
"removeComments": true,
"preserveConstEnums": true,
"declaration": true,
2018-05-14 02:50:55 -04:00
"target": "es2017",
2018-05-18 20:39:20 -04:00
"lib": ["es2017", "DOM"],
2018-05-13 23:32:01 -04:00
"noEmit": true,
"noUnusedLocals": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noUnusedParameters": false,
"pretty": true,
"noFallthroughCasesInSwitch": true,
"allowUnreachableCode": false,
"experimentalDecorators": true
},
2018-05-14 01:30:56 -04:00
"include": ["*.ts", "*.js"]
2018-05-13 23:32:01 -04:00
}