File tree 5 files changed +17
-5
lines changed
5 files changed +17
-5
lines changed Original file line number Diff line number Diff line change 6
6
"version" : " 0.2.0" ,
7
7
"configurations" : [
8
8
{
9
- "name" : " Run Extension" ,
9
+ "name" : " Run Extension Webpack " ,
10
10
"type" : " extensionHost" ,
11
11
"request" : " launch" ,
12
12
"runtimeExecutable" : " ${execPath}" ,
13
13
"args" : [" --extensionDevelopmentPath=${workspaceFolder}" ],
14
14
"outFiles" : [" ${workspaceFolder}/dist/**/*.js" ],
15
+ "preLaunchTask" : " npm: webpack"
16
+ },
17
+ {
18
+ "name" : " Run Extension" ,
19
+ "type" : " extensionHost" ,
20
+ "request" : " launch" ,
21
+ "runtimeExecutable" : " ${execPath}" ,
22
+ "args" : [" --extensionDevelopmentPath=${workspaceFolder}" ],
23
+ "outFiles" : [" ${workspaceFolder}/out/**/*.js" ],
15
24
"preLaunchTask" : " ${defaultBuildTask}"
16
25
},
17
26
{
24
33
" --extensionTestsPath=${workspaceFolder}/out/test/suite/index"
25
34
],
26
35
"outFiles" : [" ${workspaceFolder}/out/test/**/*.js" ],
27
- "preLaunchTask" : " npm: test-compile "
36
+ "preLaunchTask" : " ${defaultBuildTask} "
28
37
}
29
38
]
30
39
}
Original file line number Diff line number Diff line change 17
17
}
18
18
}
19
19
]
20
- }
20
+ }
Original file line number Diff line number Diff line change 4
4
"description" : " Competitive Programming made simple" ,
5
5
"icon" : " images/logo.png" ,
6
6
"publisher" : " marx24" ,
7
- "version" : " 0.3.0 " ,
7
+ "version" : " 0.3.2 " ,
8
8
"license" : " MIT" ,
9
9
"keywords" : [
10
10
" acm" ,
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ import { copySync } from "fs-extra";
42
42
* Path to static folder.
43
43
*/
44
44
export function pathToStatic ( ) {
45
- return join ( dirname ( dirname ( __filename ) ) , "static" ) ;
45
+ return join ( dirname ( __dirname ) , "static" ) ;
46
46
}
47
47
48
48
/**
Original file line number Diff line number Diff line change @@ -35,5 +35,8 @@ const config = {
35
35
} ,
36
36
] ,
37
37
} ,
38
+ node : {
39
+ __dirname : false ,
40
+ } ,
38
41
} ;
39
42
module . exports = config ;
You can’t perform that action at this time.
0 commit comments