mirror of https://git.tuxpa.in/a/code-server.git
Get version from vscode's package.json
This commit is contained in:
parent
6b5f50cddf
commit
bdd24081ab
|
@ -1,2 +1,2 @@
|
|||
// TODO: obtain this in a reasonable way.
|
||||
export default { name: "vscode", version: "1.31.1" };
|
||||
import * as packageJson from "../../../../lib/vscode/package.json";
|
||||
export default { name: "vscode", version: packageJson.version };
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
"declaration": true,
|
||||
"sourceMap": true,
|
||||
"strict": true,
|
||||
"resolveJsonModule": true,
|
||||
"experimentalDecorators": true,
|
||||
"plugins": [
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue