cesium/.vscode/launch.json

27 lines
762 B
JSON
Raw Permalink Normal View History

2017-02-10 03:56:57 +08:00
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
2022-01-20 23:04:37 +08:00
"name": "Launch Server",
"cwd": "${workspaceFolder}",
"runtimeExecutable": "npm",
"runtimeArgs": ["run-script", "start"],
2022-01-20 05:47:41 +08:00
"noDebug": true,
"serverReadyAction":{
"action": "startDebugging",
2022-01-26 00:50:53 +08:00
"name": "Launch in Chrome",
2022-01-20 05:47:41 +08:00
"pattern": "Cesium development server running locally."
}
},
{
2022-01-20 23:04:37 +08:00
"name": "Launch in Chrome",
2022-01-20 05:47:41 +08:00
"request": "launch",
"type": "pwa-chrome",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}"
2017-02-10 03:56:57 +08:00
}
]
}