feat: initial

This commit is contained in:
2022-05-02 14:37:54 +02:00
commit 9c878b8f06
6 changed files with 591 additions and 0 deletions

19
tsconfig.json Normal file
View File

@@ -0,0 +1,19 @@
{
"compilerOptions": {
"outDir": "./dist",
"target": "es2016",
"module": "commonjs",
"declaration": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
},
"include": [
"./**.ts"
],
"exclude": [
"./dist"
],
}