mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 11:35:40 +01:00
Updates typescript to 5.9.3 (#5050)
Fixes https://github.com/microsoft/monaco-editor/issues/5046 Closes https://github.com/microsoft/monaco-editor/pull/5045
This commit is contained in:
parent
5a7e917587
commit
708c529972
7 changed files with 194939 additions and 185766 deletions
15
package-lock.json
generated
15
package-lock.json
generated
|
|
@ -47,7 +47,7 @@
|
|||
"style-loader": "^3.3.1",
|
||||
"terser": "^5.14.2",
|
||||
"ts-node": "^10.6.0",
|
||||
"typescript": "^5.4.5",
|
||||
"typescript": "^5.9.3",
|
||||
"vite": "^7.1.5",
|
||||
"vscode-css-languageservice": "6.2.14",
|
||||
"vscode-html-languageservice": "5.2.0",
|
||||
|
|
@ -8474,10 +8474,11 @@
|
|||
}
|
||||
},
|
||||
"node_modules/typescript": {
|
||||
"version": "5.4.5",
|
||||
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.5.tgz",
|
||||
"integrity": "sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==",
|
||||
"version": "5.9.3",
|
||||
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
|
||||
"integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
|
||||
"dev": true,
|
||||
"license": "Apache-2.0",
|
||||
"bin": {
|
||||
"tsc": "bin/tsc",
|
||||
"tsserver": "bin/tsserver"
|
||||
|
|
@ -14728,9 +14729,9 @@
|
|||
"dev": true
|
||||
},
|
||||
"typescript": {
|
||||
"version": "5.4.5",
|
||||
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.5.tgz",
|
||||
"integrity": "sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==",
|
||||
"version": "5.9.3",
|
||||
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
|
||||
"integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
|
||||
"dev": true
|
||||
},
|
||||
"undici-types": {
|
||||
|
|
|
|||
|
|
@ -77,7 +77,7 @@
|
|||
"style-loader": "^3.3.1",
|
||||
"terser": "^5.14.2",
|
||||
"ts-node": "^10.6.0",
|
||||
"typescript": "^5.4.5",
|
||||
"typescript": "^5.9.3",
|
||||
"vite": "^7.1.5",
|
||||
"vscode-css-languageservice": "6.2.14",
|
||||
"vscode-html-languageservice": "5.2.0",
|
||||
|
|
|
|||
|
|
@ -29,6 +29,7 @@ libFileSet['lib.es2016.array.include.d.ts'] = true;
|
|||
libFileSet['lib.es2016.d.ts'] = true;
|
||||
libFileSet['lib.es2016.full.d.ts'] = true;
|
||||
libFileSet['lib.es2016.intl.d.ts'] = true;
|
||||
libFileSet['lib.es2017.arraybuffer.d.ts'] = true;
|
||||
libFileSet['lib.es2017.d.ts'] = true;
|
||||
libFileSet['lib.es2017.date.d.ts'] = true;
|
||||
libFileSet['lib.es2017.full.d.ts'] = true;
|
||||
|
|
@ -74,22 +75,35 @@ libFileSet['lib.es2022.full.d.ts'] = true;
|
|||
libFileSet['lib.es2022.intl.d.ts'] = true;
|
||||
libFileSet['lib.es2022.object.d.ts'] = true;
|
||||
libFileSet['lib.es2022.regexp.d.ts'] = true;
|
||||
libFileSet['lib.es2022.sharedmemory.d.ts'] = true;
|
||||
libFileSet['lib.es2022.string.d.ts'] = true;
|
||||
libFileSet['lib.es2023.array.d.ts'] = true;
|
||||
libFileSet['lib.es2023.collection.d.ts'] = true;
|
||||
libFileSet['lib.es2023.d.ts'] = true;
|
||||
libFileSet['lib.es2023.full.d.ts'] = true;
|
||||
libFileSet['lib.es2023.intl.d.ts'] = true;
|
||||
libFileSet['lib.es2024.arraybuffer.d.ts'] = true;
|
||||
libFileSet['lib.es2024.collection.d.ts'] = true;
|
||||
libFileSet['lib.es2024.d.ts'] = true;
|
||||
libFileSet['lib.es2024.full.d.ts'] = true;
|
||||
libFileSet['lib.es2024.object.d.ts'] = true;
|
||||
libFileSet['lib.es2024.promise.d.ts'] = true;
|
||||
libFileSet['lib.es2024.regexp.d.ts'] = true;
|
||||
libFileSet['lib.es2024.sharedmemory.d.ts'] = true;
|
||||
libFileSet['lib.es2024.string.d.ts'] = true;
|
||||
libFileSet['lib.es5.d.ts'] = true;
|
||||
libFileSet['lib.es6.d.ts'] = true;
|
||||
libFileSet['lib.esnext.array.d.ts'] = true;
|
||||
libFileSet['lib.esnext.collection.d.ts'] = true;
|
||||
libFileSet['lib.esnext.d.ts'] = true;
|
||||
libFileSet['lib.esnext.decorators.d.ts'] = true;
|
||||
libFileSet['lib.esnext.disposable.d.ts'] = true;
|
||||
libFileSet['lib.esnext.error.d.ts'] = true;
|
||||
libFileSet['lib.esnext.float16.d.ts'] = true;
|
||||
libFileSet['lib.esnext.full.d.ts'] = true;
|
||||
libFileSet['lib.esnext.intl.d.ts'] = true;
|
||||
libFileSet['lib.esnext.object.d.ts'] = true;
|
||||
libFileSet['lib.esnext.iterator.d.ts'] = true;
|
||||
libFileSet['lib.esnext.promise.d.ts'] = true;
|
||||
libFileSet['lib.esnext.sharedmemory.d.ts'] = true;
|
||||
libFileSet['lib.scripthost.d.ts'] = true;
|
||||
libFileSet['lib.webworker.asynciterable.d.ts'] = true;
|
||||
libFileSet['lib.webworker.d.ts'] = true;
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
6925
src/language/typescript/lib/typescriptServices.d.ts
vendored
6925
src/language/typescript/lib/typescriptServices.d.ts
vendored
File diff suppressed because it is too large
Load diff
File diff suppressed because one or more lines are too long
|
|
@ -2,4 +2,4 @@
|
|||
// **NOTE**: Do not edit directly! This file is generated using `npm run import-typescript`
|
||||
//
|
||||
|
||||
export const typescriptVersion = "5.4.5";
|
||||
export const typescriptVersion = "5.9.3";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue