Node-Red configuration
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

launch.json 1.2KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. // Use IntelliSense to learn about possible attributes.
  3. // Hover to view descriptions of existing attributes.
  4. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "type": "pwa-node",
  9. "request": "launch",
  10. "name": "Launch Program",
  11. "skipFiles": [
  12. "<node_internals>/**"
  13. ],
  14. "program": "${workspaceFolder}/index.js"
  15. },
  16. {
  17. "type": "node",
  18. "request": "launch",
  19. "name": "Mocha Tests",
  20. "program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
  21. "args": [
  22. // "--require",
  23. // "esm",
  24. // "--require",
  25. // "${workspaceFolder}/test/your-setup.js",
  26. // "--reporter",
  27. // "dot",
  28. "--slow",
  29. "5000",
  30. "--colors",
  31. "${workspaceFolder}/test/**/*.js",
  32. ],
  33. "internalConsoleOptions": "openOnSessionStart",
  34. "skipFiles": [
  35. "<node_internals>/**"
  36. ]
  37. }
  38. ]
  39. }