Created
December 18, 2024 17:26
-
-
Save CypherpunkSamurai/7488773fc9a41d5189d2f2b1e3cc05eb to your computer and use it in GitHub Desktop.
VSCode Vite launch.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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 | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment