add launch task for zed

This commit is contained in:
yuki 2025-12-05 05:20:53 -03:00
parent cc96a664f4
commit cad0d984b1
Signed by: yuki
GPG key ID: 0C98E6FF04EC3915

12
launch.json Normal file
View file

@ -0,0 +1,12 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node-terminal",
"name": "Run Script: start",
"request": "launch",
"command": "npm run start",
"cwd": "${workspaceFolder}"
}
]
}