Initial commit

This commit is contained in:
2022-02-18 16:04:45 +02:00
commit 36d7d09b01
9 changed files with 97 additions and 0 deletions

11
tsconfig.json Normal file
View File

@@ -0,0 +1,11 @@
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"declaration": true,
"outDir": "./lib",
"strict": true
},
"include": ["src"],
"exclude": ["node_modules", "**/__tests__/*"]
}