File tree Expand file tree Collapse file tree 5 files changed +17
-20
lines changed Expand file tree Collapse file tree 5 files changed +17
-20
lines changed Original file line number Diff line number Diff line change 4
4
{
5
5
"name" : " launch as server" ,
6
6
"type" : " node" ,
7
+ "request" : " launch" ,
7
8
"program" : " ${workspaceRoot}/out/webkit/webKitDebug.js" ,
8
- "runtimeArgs" : [" --harmony " , " -- nolazy" ],
9
+ "runtimeArgs" : [" --nolazy" ],
9
10
"stopOnEntry" : true ,
10
11
"args" : [ " --server=4712" ],
11
12
"sourceMaps" : true ,
12
- "outDir" : " ${workspaceRoot}/out"
13
+ "outDir" : null ,
14
+ "cwd" : " ${workspaceRoot}"
13
15
},
14
16
{
15
17
"name" : " launch in extension host" ,
22
24
],
23
25
"stopOnEntry" : false ,
24
26
"sourceMaps" : true ,
25
- "outDir" : " ${workspaceRoot}/out"
26
- },
27
- {
28
- "name" : " test" ,
29
- "type" : " node" ,
30
- "program" : " ${workspaceRoot}/node_modules/gulp/bin/gulp.js" ,
31
- "stopOnEntry" : false ,
32
- "args" : [ " test" ],
33
- "sourceMaps" : true ,
34
27
"outDir" : " out"
35
28
}
36
29
]
Original file line number Diff line number Diff line change @@ -212,7 +212,6 @@ export class V8Protocol extends ee.EventEmitter {
212
212
213
213
default :
214
214
throw new Error ( 'Unknown state' ) ;
215
- break ;
216
215
}
217
216
}
218
217
Original file line number Diff line number Diff line change @@ -44,8 +44,8 @@ export abstract class NSProject extends EventEmitter {
44
44
private _projectPath : string ;
45
45
46
46
constructor ( projectPath : string ) {
47
- this . _projectPath = projectPath ;
48
47
super ( ) ;
48
+ this . _projectPath = projectPath ;
49
49
}
50
50
51
51
public projectPath ( ) : string {
Original file line number Diff line number Diff line change 16
16
"publisher" : " Telerik" ,
17
17
"bugs" : " https://github.com/NativeScript/nativescript-vscode-extension/issues" ,
18
18
"engines" : {
19
- "vscode" : " 0.10.x "
19
+ "vscode" : " 0.10.9 "
20
20
},
21
21
"homepage" : " https://www.nativescript.org/" ,
22
22
"categories" : [" Debuggers" , " Other" ],
29
29
"gulp-mocha" : " ^2.1.3" ,
30
30
"gulp-sourcemaps" : " ^1.5.2" ,
31
31
"gulp-tslint" : " ^3.3.1" ,
32
- "gulp-typescript" : " ^2.8 .0" ,
32
+ "gulp-typescript" : " ^2.12 .0" ,
33
33
"gulp-util" : " ^3.0.5" ,
34
34
"tsd" : " ^0.6.5" ,
35
35
"tslint" : " ^2.5.1" ,
36
- "typescript" : " ^1.6 .2" ,
37
- "vscode" : " 0.10 .x" ,
36
+ "typescript" : " ^1.8 .2" ,
37
+ "vscode" : " ^0.11 .x" ,
38
38
"vsce" : " ^1.0.0"
39
39
40
40
},
41
+ "scripts" : {
42
+ "postinstall" : " node ./node_modules/vscode/bin/install"
43
+ },
41
44
"main" : " ./out/nativescript/nsMain" ,
42
45
"activationEvents" : [
43
46
" onCommand:nativescript.runIos" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"compilerOptions" : {
3
+ "target" : " es5" ,
3
4
"module" : " commonjs" ,
5
+ "moduleResolution" : " node" ,
6
+ "sourceMap" : true ,
4
7
"noImplicitAny" : false ,
5
8
"removeComments" : false ,
6
- "target" : " ES5" ,
7
- "sourceMap" : true ,
8
- "outDir" : " out"
9
+ "outDir" : " ./out" ,
10
+ "preserveConstEnums" : true
9
11
},
10
12
"exclude" : [
11
13
" node_modules" ,
You can’t perform that action at this time.
0 commit comments