123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- {
- // Use IntelliSense to learn about possible attributes.
- // Hover to view descriptions of existing attributes.
- // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
- "version": "0.2.0",
- "configurations": [
- {
- "type": "node",
- "request": "launch",
- "name": "JokeAPI",
- "skipFiles": [
- "<node_internals>/**"
- ],
- "program": "${workspaceFolder}/JokeAPI.js",
- "args": [
- "--trace-deprecation"
- ]
- },
- {
- "program": "${workspaceFolder}/tools/test.js",
- "name": "Unit Tests",
- "request": "launch",
- "type": "node",
- "skipFiles": [
- "<node_internals>/**"
- ],
- "args": [
- "--trace-deprecation"
- ],
- "console": "integratedTerminal"
- },
- {
- "program": "${workspaceFolder}/tools/info.js",
- "name": "Tools/xy",
- "request": "launch",
- "type": "node",
- "skipFiles": [
- "<node_internals>/**"
- ],
- "args": [
- "--trace-deprecation"
- ],
- "console": "integratedTerminal"
- },
- {
- "program": "${workspaceFolder}/tools/cli.js",
- "name": "CLI",
- "request": "launch",
- "type": "node",
- "skipFiles": [
- "<node_internals>/**"
- ],
- "args": [
- "--trace-deprecation"
- ],
- "console": "integratedTerminal"
- }
- ],
- "debug.javascript.usePreview": true
- }
|