launch.json 374 B

12345678910111213141516
  1. {
  2. "$schema": "https://json.schemastore.org/launchsettings.json",
  3. "version": "0.2.0",
  4. "configurations": [
  5. {
  6. "type": "chrome",
  7. "name": "针对 localhost 启动 Chrome",
  8. "request": "launch",
  9. "url": "http://localhost:9000",
  10. "env": { "NODE_ENV": "development" },
  11. "sourceMaps": true,
  12. "webRoot": "${workspaceFolder}"
  13. }
  14. ]
  15. }