2016-12-23 09:06:53 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2017-04-15 13:20:18 +00:00
|
|
|
"baseUrl": "./src",
|
2016-12-23 09:06:53 +00:00
|
|
|
"module": "commonjs",
|
2017-04-17 12:57:22 +00:00
|
|
|
"target": "es2015",
|
2016-12-23 09:06:53 +00:00
|
|
|
"declaration": false,
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"removeComments": false,
|
2021-12-06 11:14:06 +00:00
|
|
|
"esModuleInterop": true,
|
2016-12-23 09:06:53 +00:00
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"noImplicitReturns": true,
|
2016-12-26 22:21:50 +00:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noUnusedParameters": true,
|
2017-03-20 16:46:25 +00:00
|
|
|
"noUnusedLocals": true,
|
|
|
|
"lib": [
|
|
|
|
"dom",
|
|
|
|
"es2015",
|
2018-08-26 15:35:04 +00:00
|
|
|
"es2015.iterable",
|
2017-06-23 21:52:51 +00:00
|
|
|
"es2017",
|
2021-05-24 16:34:07 +00:00
|
|
|
"es2019",
|
2017-03-20 16:46:25 +00:00
|
|
|
"es7"
|
2017-04-12 10:12:57 +00:00
|
|
|
]
|
2016-12-23 09:06:53 +00:00
|
|
|
},
|
|
|
|
"compileOnSave": false,
|
|
|
|
"exclude": [
|
2017-06-23 21:52:51 +00:00
|
|
|
"dist",
|
2016-12-25 23:04:56 +00:00
|
|
|
"node_modules",
|
2017-04-11 20:45:59 +00:00
|
|
|
"*/node_modules",
|
2021-06-29 21:57:04 +00:00
|
|
|
"tabby*",
|
2016-12-26 22:21:50 +00:00
|
|
|
"platforms"
|
2016-12-23 09:06:53 +00:00
|
|
|
]
|
|
|
|
}
|