mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 19:41:09 +02:00
🐛 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:
parent
949b9c85bc
commit
5b3c5ff4fb
2 changed files with 30 additions and 0 deletions
14
apps/finance/packages/shared/tsconfig.json
Normal file
14
apps/finance/packages/shared/tsconfig.json
Normal 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
16
apps/moodlit/package.json
Normal 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"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue