CoolFace
Apppublic

namuuuu12/react-native-titanium-foundation

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
tsconfig.json37 linesDownload Raw Back to root
1json2{3  "compilerOptions": {4    "allowJs": true,5    "allowSyntheticDefaultImports": true,6    "esModuleInterop": true,7    "isolatedModules": true,8    "jsx": "react-native",9    "lib": ["esnext"],10    "moduleResolution": "node",11    "noEmit": true,12    "strict": true,13    "target": "esnext",14    "baseUrl": ".",15    "paths": {16      "@/*": ["./src/*"],17      "@components/*": ["./src/components/*"],18      "@screens/*": ["./src/screens/*"],19      "@assets/*": ["./src/assets/*"],20      "@utils/*": ["./src/utils/*"],21      "@hooks/*": ["./src/hooks/*"],22      "@services/*": ["./src/services/*"],23      "@store/*": ["./src/store/*"],24      "@navigation/*": ["./src/navigation/*"]25    },26    "skipLibCheck": true27  },28  "exclude": [29    "node_modules",30    "babel.config.js",31    "metro.config.js",32    "jest.config.js"33  ],34  "extends": "expo/tsconfig.base"35}36 37</html>