refactor(nestjs): organization build

This commit is contained in:
Ahmed Bouhuolia
2025-04-02 12:01:38 +02:00
parent ed81d4c1e0
commit f11b09cd87
125 changed files with 2769 additions and 178 deletions

24
launch.json Normal file
View File

@@ -0,0 +1,24 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Debug Nest Framework",
"runtimeExecutable": "npm",
"runtimeArgs": [
"run",
"start:debug",
"--",
"--inspect-brk"
],
"autoAttachChildProcesses": true,
"restart": true,
"sourceMaps": true,
"stopOnEntry": false,
"console": "integratedTerminal"
}
]
}