[refactor] split up handler classes

This commit is contained in:
Janis
2023-06-29 00:56:33 +02:00
parent 9382572bd7
commit d1dca713aa
8 changed files with 3156 additions and 600 deletions

View File

@@ -14,7 +14,8 @@
"@assets/*": ["/src/assets/*"],
"@styles/*": ["/src/styles/*"],
"@utils/*": ["/src/utils/*"],
"@interfaces/*": ["/src/interfaces/*"]
"@interfaces/*": ["/src/interfaces/*"],
"@handlers/*": ["/src/handlers/*"]
},
/* Bundler mode */
@@ -31,6 +32,6 @@
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
},
"include": ["src"],
"include": ["src", "tests/teamspeakHandler.test.ts"],
"references": [{ "path": "./tsconfig.node.json" }]
}