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

26 lines
618 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,
2018-05-21 17:33:33 -04:00
"baseUrl": ".",
2018-05-13 23:32:01 -04:00
"removeComments": true,
"preserveConstEnums": true,
"declaration": true,
2018-05-14 02:50:55 -04:00
"target": "es2017",
"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
},
"include": ["*.ts", "*.js"],
"exclude": ["tests.ts"]
2018-05-13 23:32:01 -04:00
}