Update lint and typecheck scripts for all packages

Add linting to the mobile app and include core and api-client
packages in the root lint, typecheck, and test scripts. Ignore
node_modules in all subdirectories and clean up stale test results.
Update lint and typecheck scripts for all packages

Add ESLint configuration for mobile app and shared packages.
Rename mobile jest config to .cjs and enable ESM. Include
packages/core and packages/api-client in monorepo lint,
typecheck, and test scripts.
This commit is contained in:
2026-05-12 17:47:47 +02:00
parent 2eeae9a27b
commit 98e74ee48d
26 changed files with 391 additions and 202 deletions
+3 -3
View File
@@ -10,9 +10,9 @@
"dev": "npm run dev -w apps/web",
"build": "npm run build -w apps/web",
"start": "npm run start -w apps/web",
"lint": "npm run lint -w apps/web && npm run lint -w apps/mobile",
"typecheck": "npm run typecheck -w apps/web && npm run typecheck -w apps/mobile",
"test": "npm run test -w apps/web",
"lint": "npm run lint -w apps/web && npm run lint -w apps/mobile && npm run lint -w packages/core && npm run lint -w packages/api-client",
"typecheck": "npm run typecheck -w apps/web && npm run typecheck -w apps/mobile && npm run typecheck -w packages/core && npm run typecheck -w packages/api-client",
"test": "npm run test -w apps/web && npm run test -w apps/mobile",
"dev:mobile": "npm run start -w apps/mobile",
"typecheck:mobile": "npm run typecheck -w apps/mobile"
},