Skip to content

Instantly share code, notes, and snippets.

@CypherpunkSamurai
Created December 18, 2024 17:26
Show Gist options
  • Save CypherpunkSamurai/7488773fc9a41d5189d2f2b1e3cc05eb to your computer and use it in GitHub Desktop.
Save CypherpunkSamurai/7488773fc9a41d5189d2f2b1e3cc05eb to your computer and use it in GitHub Desktop.

Revisions

  1. CypherpunkSamurai created this gist Dec 18, 2024.
    41 changes: 41 additions & 0 deletions launch.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,41 @@
    {
    "version": "0.2.0",
    "configurations": [
    {
    "type": "node-terminal",
    "name": "Run Script: dev",
    "request": "launch",
    "command": "npm run dev",
    "cwd": "${workspaceFolder}",
    "internalConsole": "integratedTerminal",
    "autoClose": true
    },
    {
    "type": "node-terminal",
    "name": "Run Script: build",
    "request": "launch",
    "command": "npm run build",
    "cwd": "${workspaceFolder}",
    "internalConsole": "integratedTerminal",
    "autoClose": true
    },
    {
    "type": "node-terminal",
    "name": "Run Script: lint",
    "request": "launch",
    "command": "npm run lint",
    "cwd": "${workspaceFolder}",
    "internalConsole": "integratedTerminal",
    "autoClose": true
    },
    {
    "type": "node-terminal",
    "name": "Run Script: preview",
    "request": "launch",
    "command": "npm run preview",
    "cwd": "${workspaceFolder}",
    "internalConsole": "integratedTerminal",
    "autoClose": true
    }
    ]
    }