-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtsconfig.json
38 lines (38 loc) · 998 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
33
34
35
36
37
38
{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"isolatedModules": true,
"jsx": "react-jsx",
"lib": ["es6", "dom"],
"moduleResolution": "node",
"noEmit": true,
"strict": true,
"target": "esnext",
"skipLibCheck": true,
"baseUrl": ".",
"paths": {
"~assets/*": ["src/assets/*"],
"~common/*": ["src/common/*"],
"~features/*": ["src/features/*"],
"~helpers/*": ["src/helpers/*"],
"~navigation/*": ["src/navigation/*"],
"~redux/*": ["src/redux/*"],
"~themes/*": ["src/themes/*"],
"~styled/*": ["src/styled/*"],
"~themes": ["src/themes"],
"~styled": ["src/styled"],
"~i18n": ["i18n"]
}
},
"exclude": [
"node_modules",
"babel.config.js",
"metro.config.js",
"jest.config.js",
"src/features/bible/bibleWebView/**/*",
"src/features/studies/studiesWebView/**/*"
],
"extends": "expo/tsconfig.base"
}