Skip to content
This repository was archived by the owner on Aug 29, 2019. It is now read-only.

Commit 75b990d

Browse files
author
Phil Price
committed
Update vscode metafiles for vscode 1.11.0
1 parent 451ce87 commit 75b990d

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.vscode/launch.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
"request": "launch",
99
"runtimeExecutable": "${execPath}",
1010
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ],
11-
"stopOnEntry": false,
11+
"stopOnEntry": false, // NOTE: To debug startup path in vscode 1.11.0 set this to true
1212
"sourceMaps": true,
13-
"outDir": "${workspaceRoot}/out/src",
13+
"outFiles": [ "${workspaceRoot}/out/src/**/*.js" ],
1414
"preLaunchTask": "npm"
1515
},
1616
{
@@ -21,7 +21,7 @@
2121
"args": ["--extensionDevelopmentPath=${workspaceRoot}", "--extensionTestsPath=${workspaceRoot}/out/test" ],
2222
"stopOnEntry": false,
2323
"sourceMaps": true,
24-
"outDir": "${workspaceRoot}/out/test",
24+
"outFiles": [ "${workspaceRoot}/out/test/**/*.js" ],
2525
"preLaunchTask": "npm"
2626
}
2727
]

.vscode/settings.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
},
66
"search.exclude": {
77
"out": true // set this to false to include "out" folder in search results
8-
},
9-
"typescript.tsdk": "./node_modules/typescript/lib", // we want to use the TS server from our node_modules folder to control its version
10-
"tslint.enable": true
8+
}
9+
// "typescript.tsdk": "./node_modules/typescript/lib", // we want to use the TS server from our node_modules folder to control its version
10+
// "tslint.enable": true
1111
}

0 commit comments

Comments
 (0)