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