File tree Expand file tree Collapse file tree 2 files changed +19
-23
lines changed
Expand file tree Collapse file tree 2 files changed +19
-23
lines changed Original file line number Diff line number Diff line change 33 "configurations" : [
44 {
55 "name" : " Launch Tests" ,
6- "type" : " extensionHost" ,
76 "request" : " launch" ,
8- "args" : [
9- " --extensionDevelopmentPath=${workspaceFolder}/test/extension" ,
10- " --extensionTestsPath=${workspaceFolder}/dist/cjs/test/index"
7+ "runtimeArgs" : [
8+ " test" ,
119 ],
12- "outFiles" : [
13- " ${workspaceFolder}/dist/cjs/**/*.js"
10+ "runtimeExecutable" : " npm" ,
11+ "skipFiles" : [
12+ " <node_internals>/**"
1413 ],
15- "preLaunchTask" : " ${defaultBuildTask}" ,
16- "env" : {
17- "MOCHA_grep" : " " , // RegExp of tests to run (empty for all)
18- "MOCHA_timeout" : " 0" , // Disable time-outs
19- "DEBUGTELEMETRY" : " v" ,
20- "NODE_DEBUG" : " "
21- }
22- }
14+ "type" : " node"
15+ },
2316 ]
2417}
Original file line number Diff line number Diff line change 22 "version" : " 2.0.0" ,
33 "tasks" : [
44 {
5- "type" : " npm" ,
6- "script" : " build" ,
5+ "label" : " Build+Watch" ,
6+ "type" : " shell" ,
7+ "command" : " npm" ,
8+ "args" : [
9+ " run" ,
10+ " build:esm" ,
11+ " --" ,
12+ " --watch" ,
13+ ],
714 "group" : {
815 "kind" : " build" ,
916 "isDefault" : true
1017 },
18+ "isBackground" : true ,
1119 "presentation" : {
12- "reveal " : " never "
20+ "revealProblems " : " onProblem "
1321 },
14- "problemMatcher" : " $tsc"
22+ "problemMatcher" : " $tsc-watch " ,
1523 },
16- {
17- "type" : " npm" ,
18- "script" : " lint" ,
19- "problemMatcher" : " $eslint-stylish"
20- }
2124 ]
2225}
You can’t perform that action at this time.
0 commit comments