feat: mobile app package (#1075)
This commit is contained in:
28
packages/mobile/tsconfig.json
Normal file
28
packages/mobile/tsconfig.json
Normal file
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"allowJs": true,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"baseUrl": "src",
|
||||
"esModuleInterop": true,
|
||||
"isolatedModules": true,
|
||||
"jsx": "react-native",
|
||||
"lib": ["ESNext"],
|
||||
"module": "ESNext",
|
||||
"moduleResolution": "node",
|
||||
"noEmit": true,
|
||||
"noImplicitAny": true,
|
||||
"resolveJsonModule": true,
|
||||
"skipLibCheck": true,
|
||||
"strict": true,
|
||||
"target": "esnext",
|
||||
"typeRoots": ["node_modules/@types", "./src/Types/*"],
|
||||
"paths": {
|
||||
"@Components/*": ["./Components/*"],
|
||||
"@Lib/*": ["./Lib/*"],
|
||||
"@Screens/*": ["./Screens/*"],
|
||||
"@Style/*": ["./Style/*"],
|
||||
"@Root/*": ["./*"]
|
||||
}
|
||||
},
|
||||
"exclude": ["node_modules", "babel.config.js", "metro.config.js", "jest.config.js"]
|
||||
}
|
||||
Reference in New Issue
Block a user