From 22780b0e7e78c781ed057e8cba5cce8a91ad45ad Mon Sep 17 00:00:00 2001 From: saravanakumardb1 Date: Sat, 21 Mar 2026 15:55:27 -0700 Subject: [PATCH] =?UTF-8?q?fix(scripts):=20add=20tsconfig.json=20=E2=80=94?= =?UTF-8?q?=20fixes=20pnpm=20typecheck=20failure?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The scripts/ workspace member had no tsconfig.json, so 'tsc --noEmit' printed help text and exited 1, breaking 'pnpm typecheck' across the entire monorepo. --- scripts/tsconfig.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 scripts/tsconfig.json diff --git a/scripts/tsconfig.json b/scripts/tsconfig.json new file mode 100644 index 00000000..cf377ae9 --- /dev/null +++ b/scripts/tsconfig.json @@ -0,0 +1,10 @@ +{ + "extends": "../tsconfig.base.json", + "compilerOptions": { + "outDir": "dist", + "rootDir": ".", + "noEmit": true + }, + "include": ["*.ts"], + "exclude": ["node_modules", "dist"] +}