Skip to content

Commit 13dc8d2

Browse files
authored
Add missing commas in v5.5 release notes (#3422)
1 parent 0640deb commit 13dc8d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -644,7 +644,7 @@ For example, imagine the following `tsconfig.base.json`:
644644
{
645645
"compilerOptions": {
646646
"typeRoots": [
647-
"./node_modules/@types"
647+
"./node_modules/@types",
648648
"./custom-types"
649649
],
650650
"outDir": "dist"
@@ -670,7 +670,7 @@ This means that the above `tsconfig.base.json` could be rewritten as:
670670
{
671671
"compilerOptions": {
672672
"typeRoots": [
673-
"${configDir}/node_modules/@types"
673+
"${configDir}/node_modules/@types",
674674
"${configDir}/custom-types"
675675
],
676676
"outDir": "${configDir}/dist"

0 commit comments

Comments
 (0)