- Introduced SpoolPreset and User domain models with necessary DTOs and utility functions. - Created AuthRepository, FilamentRepository, and SpoolPresetRepository interfaces for authentication and data management. - Implemented UI components for filament display, including ColorSwatch, FilamentCard, and StockBar. - Developed layout components such as Header and Screen for consistent app structure. - Added reusable UI components like Badge, Button, Card, and Input for better user interaction. - Established global constants and theme settings for consistent styling across the application. - Implemented utility functions for filament calculations and formatting. - Created Zustand stores for managing authentication, filament, and preset states. - Configured TypeScript settings for improved development experience.
55 lines
1.0 KiB
JSON
55 lines
1.0 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"lib": [
|
|
"ES2020"
|
|
],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-native",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@domain/*": [
|
|
"src/domain/*"
|
|
],
|
|
"@ports/*": [
|
|
"src/ports/*"
|
|
],
|
|
"@application/*": [
|
|
"src/application/*"
|
|
],
|
|
"@adapters/*": [
|
|
"src/adapters/*"
|
|
],
|
|
"@presentation/*": [
|
|
"src/presentation/*"
|
|
],
|
|
"@store/*": [
|
|
"src/store/*"
|
|
],
|
|
"@shared/*": [
|
|
"src/shared/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"src",
|
|
"app.json",
|
|
".expo/types/**/*.ts",
|
|
"expo-env.d.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
],
|
|
"extends": "expo/tsconfig.base"
|
|
}
|