-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
50 lines (50 loc) · 1.77 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
{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"alwaysStrict": true,
"baseUrl": "./src",
"esModuleInterop": true,
"isolatedModules": true,
"jsx": "react-native",
"lib": ["es2017"],
"module": "commonjs",
"moduleResolution": "node",
"noEmit": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"outDir": "./dist",
"resolveJsonModule": true,
"skipLibCheck": false,
"strict": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"target": "esnext",
"paths": {
"@assets": ["assets/index"],
"@common": ["components/common"],
"@hooks": ["hooks/index"],
"@navigators": ["components/navigators/index"],
"@noke-constants": ["noke/noke-constants"],
"@noke-api": ["noke/noke-api/index"],
"@noke-slices": ["noke/noke-slices/index"],
"@noke-slices/*": ["noke/noke-slices/*"],
"@noke-sagas": ["noke/noke-sagas/index"],
"@noke": ["noke/index"],
"@root-reducer": ["redux/root-reducer"],
"@screens": ["components/screens/index"],
"@selectors": ["redux/selectors"],
"@settings": ["components/settings/index"],
"@store": ["redux/store"],
"@system": ["system/index"],
"@theme": ["theme/index"],
"@types": ["types/index"],
"@utilities": ["util/index"]
}
},
"include": ["src"],
"exclude": ["node_modules", "babel.config.js", "metro.config.js", "jest.config.js"]
}