From 165242224eeb5152e99f74f1ae4cf4dd68d343ef Mon Sep 17 00:00:00 2001 From: Vyacheslav Scherbinin Date: Sat, 20 Jun 2026 10:18:16 +0700 Subject: [PATCH] fix(typescript-config): include react-router.json in published files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The `react-router.json` preset exists in the package and is consumed by apps/web, apps/admin and apps/space via `extends`, but it is missing from the `files` array in package.json — only the other four presets are listed. This makes the package manifest inconsistent with its contents: the preset would be dropped on `npm pack`/publish, and stricter `extends` resolvers (including the VS Code TS language server) report `Cannot find base config file "@plane/typescript-config/react-router.json"`. Add `react-router.json` to `files` so the manifest matches the directory. Co-Authored-By: Claude Opus 4.8 (1M context) --- packages/typescript-config/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/typescript-config/package.json b/packages/typescript-config/package.json index 85383c1a0b8..cfa6aea194b 100644 --- a/packages/typescript-config/package.json +++ b/packages/typescript-config/package.json @@ -7,6 +7,7 @@ "base.json", "nextjs.json", "react-library.json", + "react-router.json", "node-library.json" ] }