with the 0.14.7 version, I use VS Code as below “launch.json”
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceRoot}/build/script.dev.js"
}
]
then, for quasar 0.15.x , what I have to do dev/build in VS Code?
even I add the dev/build lines in package.json
“scripts”: {
“lint”: “eslint --ext .js,.vue src”,
“test”: “echo “No test specified” && exit 0”,
“dev”: “quasar dev”,
“build”: “quasar build”
}…
and
launch.json is modified as below
{
"type": "node",
"request": "launch",
"name": "Launch via NPM",
"cwd": "${workspaceFolder}",
"runtimeExecutable": "npm",
"runtimeArgs": [
"run",
"dev"
],
"port": 8080
}
but it not work.
I hope to get help ㅠㅠ