-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
53 lines (53 loc) · 1.48 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
{
"compilerOptions": {
"allowJs": false,
"allowSyntheticDefaultImports": true,
"incremental": true,
"experimentalDecorators": true,
"jsx": "react-native",
"module": "esnext",
"resolveJsonModule": true,
"moduleResolution": "node",
"noImplicitAny": false,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"removeComments": true,
"sourceMap": true,
"baseUrl": ".",
"target": "es2015",
"lib": ["es2018"],
"skipLibCheck": true,
"noEmit": true,
"importHelpers": true,
"plugins": [
{
"name": "typescript-tslint-plugin"
}
],
"paths": {
"storybook/*": ["storybook/*"],
"@services/*": ["app/services/*"],
"@components/*": ["app/components/*"],
"@components": ["app/components"],
"@models/*": ["app/models/*"],
"@screens/*": ["app/screens/*"],
"@screens": ["app/screens"],
"@theme/*": ["app/theme/*"],
"@theme": ["app/theme"],
"@utils": ["app/utils"],
"@utils/*": ["app/utils/*"],
"@navigation/*": ["app/navigation/*"],
"@i18n/*": ["app/i18n/*"],
"@i18n": ["app/i18n"],
"@exceptions": ["app/exceptions"],
"@exceptions/*": ["app/exceptions/*"],
"@custom-types": ["app/custom-types"],
"@custom-types/*": ["app/custom-types/*"],
"@assets/*": ["app/assets/*"],
"@assets/": ["app/assets/"]
}
},
"exclude": ["node_modules"],
"include": ["app", "test", "storybook"]
}