mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 23:21:08 +02:00
- Update to Expo SDK 53 compatible dependencies (from speculative SDK 55) - Add EAS Build config (eas.json) with dev/preview/production profiles - Generate app icons and splash screen assets - Add NativeWind type augmentation for Pressable className callbacks - Fix matrix-js-sdk NotificationCountType enum usage in store - Fix Swipeable render actions type mismatch with Reanimated v3 - Exclude svelte dirs from wallpaper-generator and qr-export tsconfigs - Remove duplicate scripts in root package.json - Update pnpm-lock.yaml with @matrix/mobile dependencies Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
18 lines
473 B
JSON
18 lines
473 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"lib": ["ES2022", "DOM"],
|
|
"types": ["node"],
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"verbatimModuleSyntax": true,
|
|
"noEmit": true
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.d.ts", "vitest.config.ts"],
|
|
"exclude": ["node_modules", "src/**/*.svelte", "src/svelte"]
|
|
}
|