Add VSCode settings for TypeScript SDK configuration (#5394) * Add VSCode settings for TypeScript SDK configuration * Install typescript as a dev dependency

0f4a0147fd101f7a756b82266bd591ac12a3c7a5

Cohee <18619528+Cohee1207@users.noreply.github.com>

Signed
3 files changed, +8 -2Showing whitespace changes
.vscode/settings.json+4 -0
@@ -0,0 +1,4 @@
1+{
2+ "js/ts.tsdk.promptToUseWorkspaceVersion": true,
3+ "js/ts.tsdk.path": "./node_modules/typescript/lib"
4+}
package-lock.json+2 -1
@@ -138,7 +138,8 @@
138138 "eslint": "^8.57.1",
139139 "eslint-plugin-jest": "^27.9.0",
140140 "eslint-plugin-jsdoc": "^48.10.0",
141141 "eslint-plugin-playwright": "^2.3.0",
142+ "typescript": "^5.9.3"
142143 },
143144 "engines": {
144145 "node": ">= 20"
package.json+2 -1
@@ -167,6 +167,7 @@
167167 "eslint": "^8.57.1",
168168 "eslint-plugin-jest": "^27.9.0",
169169 "eslint-plugin-jsdoc": "^48.10.0",
170170 "eslint-plugin-playwright": "^2.3.0",
171+ "typescript": "^5.9.3"
171172 }
172173}