2020-06-06 23:44:44 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"incremental": true,
|
|
|
|
"target": "es2015",
|
|
|
|
"module": "commonjs",
|
|
|
|
"types": [ "node", "jest" ],
|
|
|
|
"outDir": "dist",
|
|
|
|
"declaration": true,
|
|
|
|
"strict": true,
|
|
|
|
"esModuleInterop": true
|
|
|
|
},
|
2020-06-18 16:43:11 +00:00
|
|
|
"include": [ "./src/**/*" ],
|
|
|
|
"exclude": [
|
|
|
|
"**/*.spec.ts",
|
|
|
|
"**/*.test.ts"
|
|
|
|
]
|
2020-06-06 23:44:44 +00:00
|
|
|
}
|