This repository was archived by the owner on Aug 29, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 8
8
"request" : " launch" ,
9
9
"runtimeExecutable" : " ${execPath}" ,
10
10
"args" : [" --extensionDevelopmentPath=${workspaceRoot}" ],
11
- "stopOnEntry" : false ,
11
+ "stopOnEntry" : false , // NOTE: To debug startup path in vscode 1.11.0 set this to true
12
12
"sourceMaps" : true ,
13
- "outDir " : " ${workspaceRoot}/out/src" ,
13
+ "outFiles " : [ " ${workspaceRoot}/out/src/**/*.js " ] ,
14
14
"preLaunchTask" : " npm"
15
15
},
16
16
{
21
21
"args" : [" --extensionDevelopmentPath=${workspaceRoot}" , " --extensionTestsPath=${workspaceRoot}/out/test" ],
22
22
"stopOnEntry" : false ,
23
23
"sourceMaps" : true ,
24
- "outDir " : " ${workspaceRoot}/out/test" ,
24
+ "outFiles " : [ " ${workspaceRoot}/out/test/**/*.js " ] ,
25
25
"preLaunchTask" : " npm"
26
26
}
27
27
]
Original file line number Diff line number Diff line change 5
5
},
6
6
"search.exclude" : {
7
7
"out" : true // set this to false to include "out" folder in search results
8
- },
9
- "typescript.tsdk" : " ./node_modules/typescript/lib" , // we want to use the TS server from our node_modules folder to control its version
10
- "tslint.enable" : true
8
+ }
9
+ // "typescript.tsdk": "./node_modules/typescript/lib", // we want to use the TS server from our node_modules folder to control its version
10
+ // "tslint.enable": true
11
11
}
You can’t perform that action at this time.
0 commit comments