File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change
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
+ "name" : " Jest" ,
9
+ "type" : " node" ,
10
+ "request" : " launch" ,
11
+ "program" : " ${workspaceFolder}/node_modules/.bin/jest" ,
12
+ "stopOnEntry" : false ,
13
+ "args" : [" ${fileBasename}" , " --runInBand" , " --detectOpenHandles" ],
14
+ "cwd" : " ${workspaceFolder}" ,
15
+ "preLaunchTask" : null ,
16
+ "runtimeExecutable" : null ,
17
+ "runtimeArgs" : [" --nolazy" ],
18
+ "env" : {
19
+ "NODE_ENV" : " development"
20
+ },
21
+ "console" : " integratedTerminal" ,
22
+ "sourceMaps" : true ,
23
+ "windows" : {
24
+ "program" : " ${workspaceFolder}/node_modules/jest/bin/jest" ,
25
+ }
26
+ }
27
+ ]
28
+ }
You can’t perform that action at this time.
0 commit comments