Created
July 5, 2022 15:07
-
-
Save FrankySnow/3c4b83e0509c1b53b90724c0a823d1bc to your computer and use it in GitHub Desktop.
VS Code debugger + Quasar + Vite
This file contains hidden or 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
{ | |
// https://code.visualstudio.com/docs/nodejs/browser-debugging | |
// https://code.visualstudio.com/docs/nodejs/nodejs-debugging | |
// https://code.visualstudio.com/docs/editor/debugging | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "chrome dev", | |
"request": "launch", | |
"type": "pwa-chrome", | |
"runtimeExecutable": "dev", | |
"userDataDir": false, | |
"url": "http://localhost:9000", | |
"webRoot": "${workspaceFolder}/src", | |
"skipFiles": ["${workspaceFolder}/node_modules/**/*.js"], | |
"preLaunchTask": "Quasar dev", | |
"smartStep": true | |
} | |
] | |
} |
This file contains hidden or 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
{ | |
// ... | |
"scripts": { | |
// ... | |
"dev": "quasar dev" | |
} | |
// ... | |
} |
This file contains hidden or 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": "2.0.0", | |
"tasks": [ | |
{ | |
"type": "npm", | |
"script": "dev", | |
"problemMatcher": [], | |
"label": "Quasar dev", | |
"detail": "Quasar dev", | |
"isBackground": true | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment