File tree 3 files changed +78
-0
lines changed
packages/@css-blocks/vscode
3 files changed +78
-0
lines changed Original file line number Diff line number Diff line change @@ -3,3 +3,4 @@ node_modules
3
3
client /server
4
4
.vscode-test
5
5
* .tsbuildinfo
6
+ ! .vscode /
Original file line number Diff line number Diff line change
1
+ // A launch configuration that compiles the extension and then opens it inside a new window
2
+ {
3
+ "version" : " 0.2.0" ,
4
+ "configurations" : [
5
+ {
6
+ "type" : " extensionHost" ,
7
+ "request" : " launch" ,
8
+ "name" : " Launch Client" ,
9
+ "runtimeExecutable" : " ${execPath}" ,
10
+ "args" : [" --extensionDevelopmentPath=${workspaceRoot}" ],
11
+ "outFiles" : [" ${workspaceRoot}/out/**/*.js" ],
12
+ "preLaunchTask" : {
13
+ "type" : " npm" ,
14
+ "script" : " watch"
15
+ }
16
+ },
17
+ {
18
+ "type" : " node" ,
19
+ "request" : " attach" ,
20
+ "name" : " Attach to Server" ,
21
+ "port" : 6009 ,
22
+ "restart" : true ,
23
+ "outFiles" : [" ${workspaceRoot}/../language-server/out/**/*.js" ]
24
+ },
25
+ {
26
+ "name" : " Language Server E2E Test" ,
27
+ "type" : " extensionHost" ,
28
+ "request" : " launch" ,
29
+ "runtimeExecutable" : " ${execPath}" ,
30
+ "args" : [
31
+ " --extensionDevelopmentPath=${workspaceRoot}" ,
32
+ " --extensionTestsPath=${workspaceRoot}/out/test" ,
33
+ " ${workspaceRoot}/testFixture"
34
+ ],
35
+ "outFiles" : [" ${workspaceRoot}/out/test/**/*.js" ]
36
+ }
37
+ ],
38
+ "compounds" : [
39
+ {
40
+ "name" : " Client + Server" ,
41
+ "configurations" : [" Launch Client" , " Attach to Server" ]
42
+ }
43
+ ]
44
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "version" : " 2.0.0" ,
3
+ "tasks" : [
4
+ {
5
+ "type" : " npm" ,
6
+ "script" : " compile" ,
7
+ "group" : " build" ,
8
+ "presentation" : {
9
+ "panel" : " dedicated" ,
10
+ "reveal" : " never"
11
+ },
12
+ "problemMatcher" : [
13
+ " $tsc"
14
+ ]
15
+ },
16
+ {
17
+ "type" : " npm" ,
18
+ "script" : " watch" ,
19
+ "isBackground" : true ,
20
+ "group" : {
21
+ "kind" : " build" ,
22
+ "isDefault" : true
23
+ },
24
+ "presentation" : {
25
+ "panel" : " dedicated" ,
26
+ "reveal" : " never"
27
+ },
28
+ "problemMatcher" : [
29
+ " $tsc-watch"
30
+ ]
31
+ }
32
+ ]
33
+ }
You can’t perform that action at this time.
0 commit comments