Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {
- "version": "0.2.0",
- "configurations": [
- {
- "type": "node",
- "request": "launch",
- "name": "Backend",
- "runtimeExecutable": "npx",
- "runtimeArgs": [
- "ts-node-dev",
- "--respawn",
- "--transpile-only",
- "src/index.ts"
- ],
- "cwd": "${workspaceFolder}/packages/backend",
- "envFile": "${workspaceFolder}/packages/backend/.env",
- "env": {
- "LOG_LEVEL": "DEBUG"
- },
- "console": "integratedTerminal",
- "internalConsoleOptions": "neverOpen"
- },
- {
- "type": "node",
- "request": "launch",
- "name": "Backend Tests",
- "runtimeExecutable": "npx",
- "runtimeArgs": [
- "jest",
- "--runInBand",
- "--config",
- "jest.config.js",
- "--testMatch",
- "<rootDir>/src/**/*.test.ts"
- ],
- "cwd": "${workspaceFolder}/packages/backend",
- "envFile": "${workspaceFolder}/packages/backend/.env",
- "console": "integratedTerminal",
- "internalConsoleOptions": "neverOpen"
- },
- {
- "name": "Firefox",
- "type": "firefox",
- "request": "launch",
- "reAttach": true,
- "url": "http://localhost:3000/index.html",
- "webRoot": "${workspaceFolder}/packages/frontend/src",
- "pathMappings": [
- {
- "url": "http://localhost:3000/src",
- "path": "${workspaceFolder}/packages/frontend/src"
- }
- ]
- }
- ]
- }
Advertisement
Add Comment
Please, Sign In to add comment