forked from nartc/rn-movies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
32 lines (32 loc) · 859 Bytes
/
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
{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"isolatedModules": true,
"jsx": "react",
"lib": [
"es6",
"dom"
],
"moduleResolution": "node",
"noEmit": true,
"strict": true,
"target": "esnext",
"baseUrl": ".",
"paths": {
"*": ["types/*"],
"@api/*": ["src/api/*"],
"@styles/*": ["src/styles/*"],
"@navigation/*": ["src/navigation/*"],
"@screens/*": ["src/screens/*"],
"@components/*": ["src/components/*"],
"@store/*": ["src/store/*"],
"@ui/*": ["src/shared/ui/*"],
"@hooks/*": ["src/shared/hooks/*"],
"@platforms/*": ["src/shared/platforms/*"],
"@utils/*": ["src/utils/*"]
}
},
"exclude": ["node_modules", "babel.config.js", "metro.config.js", "jest.config.js"]
}