WIP : before-cqrs

This commit is contained in:
2024-06-11 14:57:02 -04:00
parent 5777d06fc8
commit 0d4c0e008c
22 changed files with 750 additions and 168 deletions
+16 -4
View File
@@ -5,10 +5,22 @@
"version": "0.2.0",
"configurations": [
{
"command": "npm run start:dev -b swc",
"name": "Start Nest",
"name": "Launch via NPM",
"request": "launch",
"type": "node-terminal"
},
"runtimeArgs": [
"run",
"start:dev",
"-b",
"swc"
],
"runtimeExecutable": "npm",
"skipFiles": [
"<node_internals>/**"
],
"type": "node",
"console": "internalConsole",
"outputCapture": "std",
"internalConsoleOptions": "openOnSessionStart"
}
]
}