initial commit

This commit is contained in:
2024-03-22 14:51:07 +01:00
commit 348d743af2
26 changed files with 4344 additions and 0 deletions

23
tsconfig.json Normal file
View File

@@ -0,0 +1,23 @@
{
"compilerOptions": {
"target": "es2022",
"module": "node16",
"lib": ["ES2022"],
"moduleResolution": "node16",
"rootDir": ".",
"outDir": "build",
"allowSyntheticDefaultImports": true,
"importHelpers": true,
"alwaysStrict": true,
"sourceMap": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitAny": false,
"noImplicitThis": false,
"strictNullChecks": false
},
"include": ["src/**/*", "__tests__/**/*"]
}