Added tsconfig for later building of this project

This commit is contained in:
Nicolai Ort 2020-12-13 19:06:13 +01:00
parent 37e6059187
commit 251bf1034c

17
tsconfig.json Normal file
View File

@ -0,0 +1,17 @@
{
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"rootDir": "./lib",
"outDir": "./dist",
"esModuleInterop": true,
"sourceMap": false
},
"include": [
"lib/**/*"
],
"exclude": [
"node_modules",
"**/*.spec.ts"
]
}