-
Notifications
You must be signed in to change notification settings - Fork 17
/
tsconfig.json
35 lines (35 loc) · 1.02 KB
/
tsconfig.json
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
33
34
35
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@stacks/*": ["src/stacks/*"],
"@screens/*": ["src/screens/*"],
"@components/*": ["src/components/*"],
"@constants/*": ["src/constants/*"],
"@models/*": ["src/models/*"],
"@auth/*": ["src/auth/*"],
"@dictionaries/*": ["src/dictionaries/*"],
"@settings/*": ["src/settings/*"],
"@words/*": ["src/words/*"],
"@theme/*": ["src/theme/*"],
"@services/*": ["src/services/*"],
"@utils/*": ["src/utils/*"],
"@e2e/*": ["e2e/*"]
},
"target": "ES2019",
"lib": ["ES2019"],
"jsx": "react",
"strict": true,
"moduleResolution": "node",
"noEmit": true,
"resolveJsonModule": true,
"noUnusedLocals": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"skipLibCheck": true,
"allowJs": true
},
"exclude": ["node_modules", "babel.config.js", "metro.config.js", "jest.config.js"]
}