mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 01:01:09 +02:00
Dependency updates: - Manacore mobile: Expo SDK 52 → 54, expo-router 4.x → 6.x - Supabase: Aligned to ^2.81.1 across all projects - TypeScript: Aligned to ~5.9.3 across all projects - React/React Native: Updated to 19.1.0/0.81.5 in Manacore Fixes: - Added @types/node to shared-utils for timer types - Updated shared package tsconfig for DOM/Node types All shared packages now pass type-check. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
18 lines
430 B
JSON
18 lines
430 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"lib": ["ES2020", "DOM"],
|
|
"types": ["node"],
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"outDir": "./dist"
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|