2
0

launch.json 421 B

123456789101112131415161718
  1. {
  2. "configurations": [
  3. {
  4. "command": "npm run dev",
  5. "name": "Run npm dev",
  6. "request": "launch",
  7. "type": "node-terminal"
  8. },
  9. {
  10. "type": "chrome",
  11. "request": "launch",
  12. "name": "Debug",
  13. "preLaunchTask": "webpack: dev server",
  14. "sourceMaps": true,
  15. "trace": true
  16. }
  17. ]
  18. }