Skip to content

Commit ef02353

Browse files
Sync with TypeScript-Website @ 0b2f2e5 (#191)
2 parents 1623a87 + 4a1a17d commit ef02353

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/documentation/copy/en/release-notes/TypeScript 4.9.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -481,8 +481,8 @@ If this change impacts your library, you may need to add `types@` version select
481481
},
482482
"exports": {
483483
".": {
484-
+ "types@<4.8": "4.8-types/main.d.ts",
485-
+ "types": "modern-types/main.d.ts",
484+
+ "types@<4.8": "./4.8-types/main.d.ts",
485+
+ "types": "./modern-types/main.d.ts",
486486
"import": "./dist/main.js"
487487
}
488488
}

packages/playground/src/sidebar/plugins.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export const optionsPlugin: PluginFactory = (i, utils) => {
8181
}
8282
customPlugins().forEach(module => {
8383
const li = document.createElement("li")
84-
li.innerHTML = module
84+
li.textContent = module
8585
const a = document.createElement("a")
8686
a.href = "#"
8787
a.textContent = "X"

0 commit comments

Comments
 (0)