initial commit

This commit is contained in:
2022-06-29 16:10:24 +02:00
commit 63af500747
11 changed files with 5984 additions and 0 deletions

26
tsconfig.json Normal file
View File

@@ -0,0 +1,26 @@
{
"compilerOptions": {
"outDir": "./dist/",
"strict": true,
"strictNullChecks": false,
"noImplicitAny": true,
"noImplicitThis": true,
"noImplicitReturns": false,
"module": "esnext",
"target": "es6",
"allowJs": true,
"moduleResolution": "node",
"inlineSourceMap": false,
"inlineSources": false,
"types": [
"webpack-env",
"@types/node"
],
"typeRoots": [
"src/types"
]
},
"include": [
"src/**/*.ts"
]
}