UNPKG

@koalarx/nest-cli

Version:

Biblioteca de CLI para criação de projetos utilizando Koala Nest

43 lines (42 loc) 1.37 kB
{ // Use o IntelliSense para saber mais sobre os atributos possíveis. // Focalizar para exibir as descrições dos atributos existentes. // Para obter mais informações, acesse: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "type": "node", "request": "launch", "name": "Nest Debug", "runtimeExecutable": "npm", "runtimeArgs": ["run", "start:debug", "--", "--inspect-brk"], "console": "integratedTerminal", "restart": true, "protocol": "auto", "port": 9229, "autoAttachChildProcesses": true }, { "type": "node", "request": "launch", "name": "Debug Unit Tests", "autoAttachChildProcesses": true, "skipFiles": ["<node_internals>/**"], "program": "${workspaceFolder}/node_modules/vitest/vitest.mjs", "args": ["run", "${relativeFile}"], "smartStep": true, "console": "integratedTerminal" }, { "type": "node", "request": "launch", "name": "Debug E2E Tests", "autoAttachChildProcesses": true, "skipFiles": ["<node_internals>/**"], "program": "${workspaceFolder}/node_modules/vitest/vitest.mjs", "args": ["run", "${relativeFile}", "--config", "./vitest.config.e2e.ts"], "smartStep": true, "console": "integratedTerminal" } ] }