forked from Expensify/App
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
29 lines (29 loc) · 1.19 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
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "expo/tsconfig.base",
"compilerOptions": {
"module": "commonjs",
"types": ["react-native", "react-native-web", "jest", "node"],
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"isolatedModules": true,
"strict": true,
"allowSyntheticDefaultImports": true,
"incremental": true,
"baseUrl": ".",
"paths": {
"@assets/*": ["./assets/*"],
"@components/*": ["./src/components/*"],
"@desktop/*": ["./desktop/*"],
"@github/*": ["./.github/*"],
"@hooks/*": ["./src/hooks/*"],
"@libs/*": ["./src/libs/*"],
"@navigation/*": ["./src/libs/Navigation/*"],
"@pages/*": ["./src/pages/*"],
"@styles/*": ["./src/styles/*"],
"@src/*": ["./src/*"],
"@userActions/*": ["./src/libs/actions/*"]
}
},
"include": ["src", "desktop", "web", "website", "docs", "assets", "config", "tests", "jest", "__mocks__", ".github/**/*", ".storybook/**/*", "scripts"],
"exclude": ["**/node_modules/*", "**/dist/*", ".github/actions/**/index.js", "**/docs/*"]
}