Files
vscode/extensions/package.json
Matt Bierner 321e1e5b8a Pick up TS 5.6.3 (#230848)
Should fix the ATA regression we're seeing reported: https://github.com/microsoft/TypeScript/issues/60156
2024-10-09 03:07:33 +02:00

24 lines
495 B
JSON

{
"name": "vscode-extensions",
"version": "0.0.1",
"license": "MIT",
"description": "Dependencies shared by all extensions",
"dependencies": {
"typescript": "5.6.3"
},
"scripts": {
"postinstall": "node ./postinstall.mjs"
},
"devDependencies": {
"@parcel/watcher": "2.1.0",
"esbuild": "0.23.0",
"vscode-grammar-updater": "^1.1.0"
},
"overrides": {
"node-gyp-build": "4.8.1",
"@parcel/watcher@2.1.0": {
"node-addon-api": "7.1.0"
}
}
}