-
Notifications
You must be signed in to change notification settings - Fork 294
Expand file tree
/
Copy pathtsconfig.json
More file actions
32 lines (32 loc) · 928 Bytes
/
tsconfig.json
File metadata and controls
32 lines (32 loc) · 928 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"compilerOptions": {
"strict": true,
"target": "esnext",
"module": "commonjs",
"lib": ["es2022"],
"allowJs": true,
"jsx": "react-native",
"noEmit": true,
"isolatedModules": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"skipLibCheck": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
"@components/*": ["src/components/*"],
"@screens/*": ["src/screens/*"],
"@hooks/*": ["src/hooks/*"],
"@theme/*": ["src/theme/*"],
"@types/*": ["src/types/*"],
"@services/*": ["src/services/*"],
"@store/*": ["src/store/*"],
"@utils/*": ["src/utils/*"]
}
},
"include": ["src/**/*", "App.tsx", "index.js"],
"exclude": ["node_modules", "babel.config.js", "metro.config.js", "ios", "android"]
}