vscode/build/tsconfig.json

19 lines
480 B
JSON
Raw Normal View History

2015-11-13 14:39:38 +01:00
{
"compilerOptions": {
2017-05-15 15:59:14 +02:00
"target": "es5",
2015-11-13 14:39:38 +01:00
"module": "commonjs",
"noImplicitAny": false,
"removeComments": false,
"preserveConstEnums": true,
"sourceMap": false,
"experimentalDecorators": true,
2018-02-01 14:39:12 +01:00
// enable JavaScript type checking for the language service
// use the tsconfig.build.json for compiling wich disable JavaScript
// type checking so that JavaScript file are not transpiled
"allowJs": true,
"checkJs": true
},
"exclude": [
2017-05-15 15:59:14 +02:00
"node_modules/**"
]
2015-11-13 14:39:38 +01:00
}