From dd4edce61de835dfb9cfb07d93fbbd15dbc37024 Mon Sep 17 00:00:00 2001 From: Danijel Martinek Date: Mon, 4 May 2026 20:55:34 +0200 Subject: [PATCH] fix(typescript-config): expose nextjs.json + react-library.json in exports map The prior commit added an exports map that only listed base.json and vitest.base, accidentally hiding nextjs.json and react-library.json from packages that extend them via tsconfig.json. Adds them back. Co-Authored-By: Claude Opus 4.7 (1M context) --- packages/typescript-config/package.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/typescript-config/package.json b/packages/typescript-config/package.json index 84ec97c..acfc057 100644 --- a/packages/typescript-config/package.json +++ b/packages/typescript-config/package.json @@ -5,6 +5,8 @@ "type": "module", "exports": { "./base.json": "./base.json", + "./nextjs.json": "./nextjs.json", + "./react-library.json": "./react-library.json", "./vitest.base": "./vitest.base.ts" }, "devDependencies": {