11{
2- // Use IntelliSense to learn about possible Node.js debug 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- "name" : " Attach" ,
9- "port" : 9229 ,
10- "request" : " attach" ,
11- "skipFiles" : [
12- " <node_internals>/**"
13- ],
14- "type" : " pwa-node"
15- },
16- {
17- "type" : " node" ,
18- "request" : " launch" ,
19- "name" : " All Tests" ,
20- "program" : " ${workspaceRoot}/node_modules/mocha/bin/_mocha" ,
21- "args" : [
22- " --no-timeout" ,
23- " --colors" ,
24- " ${workspaceRoot}/dist/test/unit/*.js" ,
25- " ${workspaceRoot}/dist/test/integration/*.js"
26- ],
27- "internalConsoleOptions" : " openOnSessionStart" ,
28- "outFiles" : [
29- " ${workspaceRoot}/dist/**/*.js"
30- ],
31- "skipFiles" : [
32- " <node_internals>/**"
33- ]
34- },
35- {
36- "type" : " node" ,
37- "request" : " launch" ,
38- "name" : " Unit Tests" ,
39- "program" : " ${workspaceRoot}/node_modules/mocha/bin/_mocha" ,
40- "args" : [
41- " --no-timeout" ,
42- " --colors" ,
43- " ${workspaceRoot}/dist/test/unit/**/*.js"
44- ],
45- "internalConsoleOptions" : " openOnSessionStart" ,
46- "outFiles" : [
47- " ${workspaceRoot}/dist/**/*.js"
48- ],
49- "skipFiles" : [
50- " <node_internals>/**"
51- ]
52- }
53- ]
54- }
2+ // Use IntelliSense to learn about possible Node.js debug 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+ "name" : " Attach" ,
9+ "port" : 9229 ,
10+ "request" : " attach" ,
11+ "skipFiles" : [" <node_internals>/**" ],
12+ "type" : " node"
13+ },
14+ {
15+ "type" : " node" ,
16+ "request" : " launch" ,
17+ "name" : " All Tests" ,
18+ "program" : " ${workspaceRoot}/node_modules/mocha/bin/_mocha" ,
19+ "args" : [
20+ " --no-timeout" ,
21+ " --colors" ,
22+ " ${workspaceRoot}/test/unit/*.ts" ,
23+ " ${workspaceRoot}/test/integration/*.ts"
24+ ],
25+ "internalConsoleOptions" : " openOnSessionStart" ,
26+ "outFiles" : [" ${workspaceRoot}/dist/**/*.js" ],
27+ "skipFiles" : [" <node_internals>/**" ]
28+ },
29+ {
30+ "type" : " node" ,
31+ "request" : " launch" ,
32+ "name" : " Unit Tests" ,
33+ "program" : " ${workspaceRoot}/node_modules/mocha/bin/_mocha" ,
34+ "args" : [
35+ " --no-timeout" ,
36+ " --colors" ,
37+ " ${workspaceRoot}/test/unit/**/*.ts"
38+ ],
39+ "internalConsoleOptions" : " openOnSessionStart" ,
40+ "outFiles" : [" ${workspaceRoot}/dist/**/*.js" ],
41+ "skipFiles" : [" <node_internals>/**" ]
42+ }
43+ ]
44+ }
0 commit comments