UNPKG

1 kBJSONView Raw
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": "node",
9 "request": "attach",
10 "name": "Attach by Process ID",
11 "processId": "${command:PickProcess}",
12 "stopOnEntry": false
13 },
14 {
15 "type": "node",
16 "name": "vscode-jest-tests",
17 "request": "launch",
18 "args": ["--runInBand"],
19 "cwd": "${workspaceFolder}",
20 "console": "integratedTerminal",
21 "internalConsoleOptions": "neverOpen",
22 "program": "${workspaceFolder}/node_modules/jest/bin/jest"
23 },
24 {
25 "type": "node",
26 "request": "launch",
27 "name": "Launch Program",
28 "program": "${workspaceFolder}/integration/type-graphql/main.ts",
29 "preLaunchTask": "tsc: build - tsconfig.json",
30 "outFiles": ["${workspaceFolder}/dist/**/*.js"]
31 }
32 ]
33}