refactor: reorganize imports and improve dependency injection decorators; add tests for TSinjex functionality

Signed-off-by: Max P. <Mail@MPassarello.de>
This commit is contained in:
2025-05-02 19:55:01 +02:00
parent 3a52f14dcd
commit 9e1b7a8d7b
2 changed files with 29 additions and 0 deletions

20
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,20 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug Deno Tests",
"type": "node",
"request": "launch",
"cwd": "${workspaceFolder}",
"runtimeExecutable": "/home/maxp/.deno/bin/deno",
"runtimeArgs": [
"test",
"--inspect-brk",
"--allow-all",
"tests/*.ts"
],
"attachSimplePort": 9229,
"console": "integratedTerminal"
}
]
}

9
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,9 @@
{
"editor.tabSize": 4,
"editor.insertSpaces": true,
"deno.enable": true,
"editor.formatOnSave": true,
"editor.defaultFormatter": "denoland.vscode-deno",
"editor.detectIndentation": false,
"editor.indentSize": "tabSize"
}