We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6386f84 commit e0e22c1Copy full SHA for e0e22c1
src/configuration.ts
@@ -183,7 +183,7 @@ export class Configuration {
183
* @returns {object} An object containing the extension id, name, and display name.
184
*/
185
public getExtensionNames(): {id: string; name: string; displayName: string} {
186
- const packageJSON = JSON.parse(fs.readFileSync(__dirname + "./../../package.json").toString());
+ const packageJSON = JSON.parse(fs.readFileSync(__dirname + "/../../package.json").toString());
187
188
const displayName: string = packageJSON.displayName;
189
const fullname: string = packageJSON.name;
0 commit comments