mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 22:01:09 +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>
19 lines
431 B
JSON
19 lines
431 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"noEmit": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist", "src/svelte"]
|
|
}
|