File tree Expand file tree Collapse file tree 4 files changed +41
-1
lines changed Expand file tree Collapse file tree 4 files changed +41
-1
lines changed Original file line number Diff line number Diff line change @@ -2,5 +2,4 @@ client/node_modules/
2
2
client /out /
3
3
client /server /
4
4
server /node_modules /
5
- .vscode /
6
5
.DS_Store
Original file line number Diff line number Diff line change
1
+ // A launch configuration that launches the extension inside a new window
2
+ {
3
+ "version" : " 0.1.0" ,
4
+ "configurations" : [
5
+ {
6
+ "name" : " Launch Extension" ,
7
+ "type" : " extensionHost" ,
8
+ "request" : " launch" ,
9
+ "runtimeExecutable" : " ${execPath}" ,
10
+ "args" : [" --extensionDevelopmentPath=${workspaceRoot}" ],
11
+ "stopOnEntry" : false ,
12
+ "sourceMaps" : true ,
13
+ "outDir" : " ${workspaceRoot}/out"
14
+ }
15
+ ]
16
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "version" : " 0.1.0" ,
3
+ "configurations" : [
4
+ {
5
+ "name" : " Attach" ,
6
+ "type" : " node" ,
7
+ "request" : " attach" ,
8
+ "port" : 6004 ,
9
+ "sourceMaps" : true ,
10
+ "outDir" : " ${workspaceRoot}/../client/server"
11
+ },
12
+ {
13
+ "name" : " Attach (cmd)" ,
14
+ "type" : " node" ,
15
+ "request" : " attach" ,
16
+ "port" : 5858 ,
17
+ "sourceMaps" : true ,
18
+ "outDir" : " ${workspaceRoot}/../client/server"
19
+ }
20
+ ]
21
+ }
Original file line number Diff line number Diff line change
1
+ // Place your settings in this file to overwrite default and user settings.
2
+ {
3
+ "typescript.tsdk" : " ./node_modules/typescript/lib"
4
+ }
You can’t perform that action at this time.
0 commit comments