Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

28 righe
1.0 KiB

8 anni fa
8 anni fa
  1. // A launch configuration that compiles the extension and then opens it inside a new window
  2. {
  3. "version": "0.1.0",
  4. "configurations": [
  5. {
  6. "name": "Launch Extension",
  7. "type": "extensionHost",
  8. "request": "launch",
  9. "runtimeExecutable": "${execPath}",
  10. "args": ["--extensionDevelopmentPath=${workspaceRoot}" ],
  11. "stopOnEntry": false,
  12. "sourceMaps": true,
  13. "outFiles": ["${workspaceRoot}/out/src/**/*.js"],
  14. "preLaunchTask": "compile"
  15. },
  16. {
  17. "name": "Launch Tests",
  18. "type": "extensionHost",
  19. "request": "launch",
  20. "runtimeExecutable": "${execPath}",
  21. "args": ["--extensionDevelopmentPath=${workspaceRoot}", "--extensionTestsPath=${workspaceRoot}/out/test" ],
  22. "stopOnEntry": false,
  23. "sourceMaps": true,
  24. "outFiles": ["${workspaceRoot}/out/test/**/*.js"],
  25. "preLaunchTask": "compile"
  26. }
  27. ]
  28. }