mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-18 16:29:43 +02:00
Backend: figures CRUD API with rarity system and random stats Mobile: re-scaffolded with create-expo-app (SDK 54), NativeWind 4 design system, create form + shelf grid. Auth disabled for faster iteration. Shared: types inlined for Node v24 ESM compat. See CLAUDE.md for current status, known issues, and next steps. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
16 lines
341 B
JSON
16 lines
341 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"noEmit": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules"]
|
|
}
|