vscode/build/tsconfig.json

29 lines
689 B
JSON
Raw Permalink Normal View History

2015-11-13 14:39:38 +01:00
{
"compilerOptions": {
"target": "es2017",
2015-11-13 14:39:38 +01:00
"module": "commonjs",
"removeComments": false,
"preserveConstEnums": true,
"sourceMap": false,
"resolveJsonModule": true,
2015-11-13 14:39:38 +01:00
"experimentalDecorators": true,
2018-02-01 14:39:12 +01:00
// enable JavaScript type checking for the language service
2019-04-09 07:21:46 +02:00
// use the tsconfig.build.json for compiling which disable JavaScript
2018-02-01 14:39:12 +01:00
// type checking so that JavaScript file are not transpiled
"allowJs": true,
2018-10-03 06:44:30 +02:00
"checkJs": true,
2018-10-04 00:49:52 +02:00
"strict": true,
"exactOptionalPropertyTypes": false,
2021-06-08 00:36:16 +02:00
"useUnknownInCatchVariables": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"newLine": "lf"
},
"include": [
"**/*.ts"
],
"exclude": [
2017-05-15 15:59:14 +02:00
"node_modules/**"
]
2019-04-09 07:21:46 +02:00
}