vscode/extensions/package.json
Matt Bierner d45c89bc65
Pick up TS 4.6.1
Fixes #142460

We're picking up the insiders version because TS is holding off on publishing the stable due to current events. However we don't want `insiders` to show in the version string, so patch the version string to look like the stable version
2022-02-28 15:28:29 -08:00

17 lines
358 B
JSON

{
"name": "vscode-extensions",
"version": "0.0.1",
"license": "MIT",
"description": "Dependencies shared by all extensions",
"dependencies": {
"typescript": "^4.6.2-insiders.20220225"
},
"scripts": {
"postinstall": "node ./postinstall"
},
"devDependencies": {
"esbuild": "^0.11.12",
"vscode-grammar-updater": "^1.0.3"
}
}