2015-11-13 21:39:38 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2018-10-13 02:24:15 +08:00
|
|
|
"target": "es2017",
|
2015-11-13 21:39:38 +08:00
|
|
|
"module": "commonjs",
|
|
|
|
"removeComments": false,
|
|
|
|
"preserveConstEnums": true,
|
|
|
|
"sourceMap": false,
|
2018-07-06 21:13:44 +08:00
|
|
|
"resolveJsonModule": true,
|
2015-11-13 21:39:38 +08:00
|
|
|
"experimentalDecorators": true,
|
2018-02-01 21:39:12 +08: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,
|
2018-10-03 12:44:30 +08:00
|
|
|
"checkJs": true,
|
2018-10-04 06:49:52 +08:00
|
|
|
"strict": true,
|
2018-10-04 06:52:36 +08:00
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true
|
2017-05-09 06:41:38 +08:00
|
|
|
},
|
|
|
|
"exclude": [
|
2017-05-15 21:59:14 +08:00
|
|
|
"node_modules/**"
|
2017-05-09 06:41:38 +08:00
|
|
|
]
|
2015-11-13 21:39:38 +08:00
|
|
|
}
|