forked from taozhi8833998/node-sql-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlaunch.json
More file actions
41 lines (41 loc) · 1.21 KB
/
launch.json
File metadata and controls
41 lines (41 loc) · 1.21 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"name": "Attach unit tests",
"request": "attach",
"port": 9240,
"resolveSourceMapLocations": [
"${workspaceFolder}/**",
"!**/node_modules/**"
],
"skipFiles": [
"<node_internals>/*.js",
"**/loader.js", // webpack hmr reloader
"node_modules/core-js/**",
"output/**"
]
}, {
"type": "node",
"request": "launch",
"name": "Debug generator",
"cwd": "${workspaceFolder}",
"args": [
// "${workspaceFolder}/output/dev/generator.js"
"${workspaceFolder}/typegen.js"
],
"protocol": "inspector",
"sourceMaps": true,
"resolveSourceMapLocations": [
"${workspaceFolder}/**",
"!**/node_modules/**"
],
"skipFiles": [
"<node_internals>/*.js",
"${workspaceFolder}\\output/**",
"${workspaceFolder}\\webpack\\bootstrap"
]
}
]
}