react-native-template-clean-architecture
Version:
This is a template for creating React Native projects based on Clean Architecture
28 lines (27 loc) • 805 B
JSON
// prettier-ignore
{
"extends": "@tsconfig/react-native/tsconfig.json" /* Recommended React Native TSConfig base */,
"compilerOptions": {
"baseUrl": "./",
"jsx": "react",
"lib": ["es6"],
"types": ["node"],
"strict": true,
"noEmit": true,
"allowJs": true,
"target": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true /* Skip type checking all .d.ts files. */,
"paths": {
"@config/*": ["src/config/*"],
"@data/*": ["src/data/*"],
"@domain/*": ["src/domain/*"],
"@infraestructure/*": ["src/infrastructure/*"],
"@ui/*": ["src/ui/*"]
}
},
"exclude": ["node_modules", "babel.config.js", "metro.config.js"]
}