|
2 | 2 | "version": "0.2.0", |
3 | 3 | "configurations": [ |
4 | 4 | { |
5 | | - "name": "Expo iOS Example", |
| 5 | + "name": "Example: Browser", |
| 6 | + "type": "node", |
| 7 | + "request": "launch", |
| 8 | + "runtimeExecutable": "npm", |
| 9 | + "runtimeArgs": ["run", "dev", "--workspace=example/browser"], |
| 10 | + "console": "integratedTerminal", |
| 11 | + "internalConsoleOptions": "neverOpen", |
| 12 | + "cwd": "${workspaceRoot}", |
| 13 | + "skipFiles": ["<node_internals>/**"] |
| 14 | + }, |
| 15 | + { |
| 16 | + "name": "Example: Expo iOS", |
6 | 17 | "request": "launch", |
7 | 18 | "type": "node", |
8 | 19 | "runtimeExecutable": "npm", |
|
13 | 24 | "skipFiles": ["<node_internals>/**"] |
14 | 25 | }, |
15 | 26 | { |
16 | | - "name": "Express", |
| 27 | + "name": "Example: Express", |
17 | 28 | "program": "${workspaceRoot}/example/express/app.js", |
18 | 29 | "request": "launch", |
19 | | - "preLaunchTask": "npm: build", |
20 | 30 | "cwd": "${workspaceRoot}/example/express", |
21 | 31 | "skipFiles": ["<node_internals>/**"], |
22 | | - "type": "pwa-node" |
| 32 | + "type": "node" |
| 33 | + }, |
| 34 | + { |
| 35 | + "name": "Example: Next.js", |
| 36 | + "type": "node", |
| 37 | + "request": "launch", |
| 38 | + "runtimeExecutable": "npm", |
| 39 | + "runtimeArgs": ["run", "dev", "--workspace=example/nextjs"], |
| 40 | + "console": "integratedTerminal", |
| 41 | + "internalConsoleOptions": "neverOpen", |
| 42 | + "cwd": "${workspaceRoot}", |
| 43 | + "skipFiles": ["<node_internals>/**"] |
| 44 | + }, |
| 45 | + { |
| 46 | + "name": "Example: React", |
| 47 | + "type": "node", |
| 48 | + "request": "launch", |
| 49 | + "runtimeExecutable": "npm", |
| 50 | + "runtimeArgs": ["run", "start", "--workspace=example/react"], |
| 51 | + "console": "integratedTerminal", |
| 52 | + "internalConsoleOptions": "neverOpen", |
| 53 | + "cwd": "${workspaceRoot}", |
| 54 | + "skipFiles": ["<node_internals>/**"] |
| 55 | + }, |
| 56 | + { |
| 57 | + "name": "Example: SvelteKit", |
| 58 | + "type": "node", |
| 59 | + "request": "launch", |
| 60 | + "runtimeExecutable": "npm", |
| 61 | + "runtimeArgs": ["run", "dev", "--workspace=example/svelte-kit"], |
| 62 | + "console": "integratedTerminal", |
| 63 | + "internalConsoleOptions": "neverOpen", |
| 64 | + "cwd": "${workspaceRoot}", |
| 65 | + "skipFiles": ["<node_internals>/**"] |
| 66 | + }, |
| 67 | + { |
| 68 | + "name": "Example: Vue", |
| 69 | + "type": "node", |
| 70 | + "request": "launch", |
| 71 | + "runtimeExecutable": "npm", |
| 72 | + "runtimeArgs": ["run", "dev", "--workspace=example/vue"], |
| 73 | + "console": "integratedTerminal", |
| 74 | + "internalConsoleOptions": "neverOpen", |
| 75 | + "cwd": "${workspaceRoot}", |
| 76 | + "skipFiles": ["<node_internals>/**"] |
23 | 77 | }, |
24 | 78 | { |
25 | 79 | "name": "Test", |
|
29 | 83 | "args": ["--run"], |
30 | 84 | "console": "integratedTerminal", |
31 | 85 | "internalConsoleOptions": "neverOpen", |
32 | | - "disableOptimisticBPs": true, |
33 | 86 | "windows": { |
34 | 87 | "program": "${workspaceFolder}/node_modules/vitest/vitest.mjs" |
35 | 88 | }, |
|
43 | 96 | "args": ["--run", "${fileBasenameNoExtension}"], |
44 | 97 | "console": "integratedTerminal", |
45 | 98 | "internalConsoleOptions": "neverOpen", |
46 | | - "disableOptimisticBPs": true, |
47 | 99 | "windows": { |
48 | 100 | "program": "${workspaceFolder}/node_modules/vitest/vitest.mjs" |
49 | 101 | }, |
|
0 commit comments