From 74258f7c2dd050a9ec8d36e4b6d28f4c757359df Mon Sep 17 00:00:00 2001 From: Ryan Cavanaugh Date: Tue, 21 Jan 2025 12:46:23 -0800 Subject: [PATCH] Fix mismatched braces in paths.md Fixes https://github.com/microsoft/TypeScript/issues/60995 --- packages/tsconfig-reference/copy/en/options/paths.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/tsconfig-reference/copy/en/options/paths.md b/packages/tsconfig-reference/copy/en/options/paths.md index 05df93568930..8d1588e1fb3e 100644 --- a/packages/tsconfig-reference/copy/en/options/paths.md +++ b/packages/tsconfig-reference/copy/en/options/paths.md @@ -29,7 +29,8 @@ This would allow you to be able to write `import "jquery"`, and get all of the c "shared/*": ["./src/app/_shared/*"], "helpers/*": ["./src/helpers/*"], "tests/*": ["./src/tests/*"] - }, + } + } } ```