27 lines
588 B
JSON
27 lines
588 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Launch Vite Dev Server",
|
|
"type": "node-terminal",
|
|
"request": "launch",
|
|
"command": "npm run dev",
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
{
|
|
"name": "Launch Preview (Test) Server",
|
|
"type": "node-terminal",
|
|
"request": "launch",
|
|
"command": "npm run test",
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
{
|
|
"name": "Playwright Tests",
|
|
"type": "node-terminal",
|
|
"request": "launch",
|
|
"command": "npm run test:e2e",
|
|
"cwd": "${workspaceFolder}"
|
|
}
|
|
]
|
|
}
|