-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtsconfig.json
54 lines (54 loc) · 1.57 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"extends": "@tsconfig/react-native/tsconfig.json",
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"esModuleInterop": true,
"isolatedModules": true,
"jsx": "react-native",
"lib": ["es2017"],
"moduleResolution": "node",
"noEmit": true,
"paths": {
"*": ["lib/*"],
"@components/*": ["lib/components/*"],
"@config/*": ["lib/config/*"],
"@data/*": ["lib/data/*"],
"@db/*": ["lib/db/*"],
"@fixtures/*": ["lib/fixtures/*"],
"@forms/*": ["lib/forms/*"],
"@hooks": ["lib/hooks/index.ts"],
"@hooks/*": ["lib/hooks/*"],
"@images": ["lib/images/index.ts"],
"@images/*": ["lib/images/*"],
"@model/*": ["lib/model/*"],
"@root/*": ["lib/*"],
"@screens/*": ["lib/screens/*"],
"@services/*": ["lib/services/*"],
"@store": ["lib/store/index.ts"],
"@store/*": ["lib/store/*"],
"@structure/*": ["lib/structure/*"],
"@styles/*": ["lib/styles/*"],
"@templates/*": ["lib/templates/*"],
"@translations": ["lib/translations/index.ts"],
"@types/*": ["types/*"],
"@ui-elements": ["lib/ui-elements/index.ts"],
"@ui-elements/*": ["lib/ui-elements/*"],
"@utils/*": ["lib/utils/*"]
},
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": false,
"target": "esnext",
"useDefineForClassFields": true
},
"include": ["lib/**/*", "types/**/*"],
"exclude": [
".eslintrc.js",
"babel.config.js",
"jest.config.js",
"jest.setup.js",
"metro.config.js"
]
}