2019-06-23 03:35:23 -07:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"lib": [
|
|
|
|
"es2017"
|
|
|
|
],
|
|
|
|
"types": [
|
|
|
|
"node",
|
|
|
|
"jest"
|
|
|
|
],
|
|
|
|
"module": "commonjs",
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"removeComments": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"strict": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"preserveConstEnums": true,
|
|
|
|
"declaration": true,
|
|
|
|
"outDir": "./dist/",
|
|
|
|
"target": "es2017",
|
|
|
|
"sourceMap": true
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"**/*.d.ts",
|
|
|
|
"src/**/*",
|
2019-08-13 10:42:03 -07:00
|
|
|
"test/**/*"
|
2019-06-23 03:35:23 -07:00
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"dist/**/*",
|
|
|
|
"node_modules/**/*",
|
|
|
|
"**/*.spec.ts"
|
|
|
|
]
|
|
|
|
}
|