2019-06-23 03:35:23 -07:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"lib": [
|
|
|
|
"es2017"
|
|
|
|
],
|
|
|
|
"types": [
|
2019-11-25 14:29:28 -08:00
|
|
|
"node"
|
2019-06-23 03:35:23 -07:00
|
|
|
],
|
|
|
|
"module": "commonjs",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"removeComments": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"strict": true,
|
|
|
|
"preserveConstEnums": true,
|
|
|
|
"declaration": true,
|
|
|
|
"outDir": "./dist/",
|
|
|
|
"target": "es2017",
|
|
|
|
"sourceMap": true
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"**/*.d.ts",
|
|
|
|
"commands/**/*",
|
|
|
|
"index.ts",
|
2019-08-13 10:42:03 -07:00
|
|
|
"src/**/*"
|
2019-06-23 03:35:23 -07:00
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"dist",
|
2019-08-14 04:45:18 -07:00
|
|
|
"node_modules/**/*",
|
2019-06-23 03:35:23 -07:00
|
|
|
"**/*.spec.ts"
|
|
|
|
]
|
|
|
|
}
|