🐛 fix: resolve type-check errors in finance and moodlit

- Add missing tsconfig.json to finance/packages/shared
- Remove recursive turbo scripts from moodlit/package.json

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Till-JS 2025-12-04 16:30:01 +01:00
parent 949b9c85bc
commit 5b3c5ff4fb
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,14 @@
{
"compilerOptions": {
"target": "ES2021",
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"skipLibCheck": true,
"declaration": true,
"outDir": "./dist",
"rootDir": "./src"
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}

16
apps/moodlit/package.json Normal file
View file

@ -0,0 +1,16 @@
{
"name": "moodlit",
"version": "1.0.0",
"private": true,
"description": "Moodlit - Ambient lighting & mood app",
"scripts": {
"dev": "turbo run dev",
"dev:backend": "pnpm --filter @moodlit/backend dev",
"dev:web": "pnpm --filter @moodlit/web dev",
"dev:mobile": "pnpm --filter @moodlit/mobile dev",
"dev:landing": "pnpm --filter @moodlit/landing dev",
"db:push": "pnpm --filter @moodlit/backend db:push",
"db:studio": "pnpm --filter @moodlit/backend db:studio"
},
"packageManager": "pnpm@9.15.0"
}