File tree Expand file tree Collapse file tree 3 files changed +1
-15
lines changed Expand file tree Collapse file tree 3 files changed +1
-15
lines changed Original file line number Diff line number Diff line change 14
14
"NODE_ENV" : " development"
15
15
}
16
16
},
17
- {
18
- "name" : " Debug without webpack" ,
19
- "type" : " node" ,
20
- "request" : " launch" ,
21
- "cwd" : " ${workspaceFolder}" ,
22
- "runtimeExecutable" : " ${workspaceFolder}/node_modules/.bin/electron" ,
23
- "args" : [" ." ],
24
- "outputCapture" : " std" ,
25
- "preLaunchTask" : " npm: build:no-pack" ,
26
- "env" : {
27
- "NODE_ENV" : " development"
28
- }
29
- },
30
17
{
31
18
"name" : " Debug without build" ,
32
19
"type" : " node" ,
Original file line number Diff line number Diff line change 14
14
"watch:assets" : " node ./scripts/extract.js && node ./scripts/copyassets.js watch" ,
15
15
"watch" : " concurrently \" yarn watch:tsc\" \" yarn watch:assets\" " ,
16
16
"build" : " tsc && yarn bundle:preload && node ./scripts/extract.js && node ./scripts/copyassets.js" ,
17
- "build:no-pack" : " tsc && yarn bundle:preload && node ./scripts/extract.js && node ./scripts/copyassets.js" ,
18
17
"build:all" : " yarn clean && yarn build && yarn start" ,
19
18
"bundle:preload" : " webpack --config webpack.preload.js" ,
20
19
"extract" : " node scripts/extract.js" ,
Original file line number Diff line number Diff line change @@ -512,7 +512,7 @@ export class SessionWindow implements IDisposable {
512
512
513
513
this . _showProgressView ( 'Creating new session' ) ;
514
514
515
- const sessionConfig = new SessionConfig ( ) ;
515
+ const sessionConfig = SessionConfig . createLocal ( ) ;
516
516
this . _sessionConfig = sessionConfig ;
517
517
this . _wsSettings = new WorkspaceSettings (
518
518
sessionConfig . workingDirectory
You can’t perform that action at this time.
0 commit comments