Initial commit

This commit is contained in:
Sebastian Seedorf
2021-04-17 22:31:16 +02:00
commit a1df114a5a
20 changed files with 3001 additions and 0 deletions

14
tsconfig.json Normal file
View File

@@ -0,0 +1,14 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"sourceMap": true,
"outDir": "dist"
},
"exclude": [
"node_modules"
],
"include": [
"src"
]
}