From 7bc7976e4e6d2c5741df292faf8ab0cc72d69047 Mon Sep 17 00:00:00 2001 From: Thomas Joise Date: Fri, 10 Jul 2026 10:23:18 +0530 Subject: [PATCH] chore: root typecheck now fans out to every workspace's own tsconfig Closes the gap where app-level type errors escaped the standard gate (root tsconfig covers packages/* only; apps each have their own). Co-Authored-By: Claude Fable 5 --- package.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 0000000..23fe92f --- /dev/null +++ b/package.json @@ -0,0 +1,20 @@ +{ + "name": "sims-next", + "private": true, + "version": "0.1.0", + "type": "module", + "workspaces": [ + "packages/*", + "apps/*" + ], + "scripts": { + "test": "vitest run", + "test:watch": "vitest", + "typecheck": "tsc -p tsconfig.json && npm run typecheck --workspaces --if-present" + }, + "devDependencies": { + "@types/node": "^22.10.0", + "typescript": "^5.7.0", + "vitest": "^3.0.0" + } +}