initial commit

This commit is contained in:
Ville Saukkonen 2023-03-22 23:16:13 +02:00
commit b6f3653286
12 changed files with 20132 additions and 0 deletions

12
tsconfig.json Normal file
View file

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