Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

launch.json 796 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  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. "args": [
  9. "task"
  10. ],
  11. "name": "Gulp task",
  12. "program": "${workspaceFolder}/node_modules/gulp/bin/gulp.js",
  13. "request": "launch",
  14. "skipFiles": [
  15. "<node_internals>/**"
  16. ],
  17. "type": "pwa-node"
  18. },
  19. {
  20. "name": "Python: Current File",
  21. "type": "python",
  22. "request": "launch",
  23. "program": "${file}",
  24. "console": "integratedTerminal"
  25. }
  26. ]
  27. }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...