2019-06-23 03:35:23 -07:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"lib": [
|
2021-07-01 00:04:24 -07:00
|
|
|
"es2017",
|
|
|
|
"ES2020.Promise"
|
2019-06-23 03:35:23 -07:00
|
|
|
],
|
|
|
|
"types": [
|
|
|
|
"node",
|
|
|
|
"jest"
|
|
|
|
],
|
|
|
|
"module": "commonjs",
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"removeComments": true,
|
2022-09-09 06:24:23 -07:00
|
|
|
"incremental": true,
|
2019-06-23 03:35:23 -07:00
|
|
|
"strictNullChecks": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"preserveConstEnums": true,
|
|
|
|
"declaration": true,
|
|
|
|
"outDir": "./dist/",
|
|
|
|
"target": "es2017",
|
|
|
|
"sourceMap": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
2022-04-08 14:32:08 -07:00
|
|
|
"experimentalDecorators": true,
|
|
|
|
"esModuleInterop": true
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"**/*.d.ts",
|
|
|
|
"commands/**/*",
|
|
|
|
"index.ts",
|
|
|
|
"config/**/*",
|
|
|
|
"src/**/*",
|
2019-08-13 10:42:03 -07:00
|
|
|
"test/**/*"
|
2019-06-23 03:35:23 -07:00
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"dist/**/*",
|
|
|
|
"node_modules/**/*",
|
|
|
|
"**/*.spec.ts"
|
|
|
|
]
|
|
|
|
}
|