We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b5f50c commit bdd2408Copy full SHA for bdd2408
packages/vscode/src/fill/package.ts
@@ -1,2 +1,2 @@
1
-// TODO: obtain this in a reasonable way.
2
-export default { name: "vscode", version: "1.31.1" };
+import * as packageJson from "../../../../lib/vscode/package.json";
+export default { name: "vscode", version: packageJson.version };
tsconfig.json
@@ -8,6 +8,7 @@
8
"declaration": true,
9
"sourceMap": true,
10
"strict": true,
11
+ "resolveJsonModule": true,
12
"experimentalDecorators": true,
13
"plugins": [
14
{
0 commit comments