changed to a non nx monorepo

This commit is contained in:
2025-02-14 18:35:39 -06:00
parent a4f77ac63a
commit 2f16c30dad
57 changed files with 20069 additions and 272 deletions

28
.vscode/launch.json vendored
View File

@@ -10,11 +10,31 @@
"url": "http://localhost:4200/"
},
{
"name": "ng test",
"type": "chrome",
"type": "node",
"request": "launch",
"preLaunchTask": "npm: test",
"url": "http://localhost:9876/debug.html"
"name": "Debug Nest Framework",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "start:debug", "--", "--inspect-brk"],
"autoAttachChildProcesses": true,
"restart": true,
"sourceMaps": true,
"stopOnEntry": false,
"console": "integratedTerminal",
"env": {
"HOST_NAME": "localhost"
}
},
{
"name": "Debug NestJS API",
"type": "node",
"request": "launch",
"runtimeExecutable": "npx",
"runtimeArgs": ["nest", "start", "--debug", "--watch"],
"port": 9229,
"cwd": "${workspaceFolder}/api",
"envFile": "${workspaceFolder}/api/.env",
"console": "integratedTerminal",
"skipFiles": ["<node_internals>/**"]
}
]
}

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

@@ -0,0 +1,29 @@
{
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"explorer.confirmDelete": false,
"typescript.updateImportsOnFileMove.enabled": "always",
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
},
"prettier.printWidth": 240,
"git.autofetch": false,
"git.autorefresh": true
}