This commit is contained in:
Konrad Pabjan 2020-02-20 15:48:03 -05:00
parent 18f0f591fb
commit 6ced765a9f
12 changed files with 4792 additions and 4 deletions

13
tsconfig.json Normal file
View file

@ -0,0 +1,13 @@
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"outDir": "./lib",
"rootDir": "./src",
"strict": true,
"noImplicitAny": false,
"moduleResolution": "node",
"esModuleInterop": true
},
"exclude": ["node_modules", "**/*.test.ts"]
}