-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
33 lines (32 loc) · 984 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
{
"extends": "@tsconfig/react-native/tsconfig.json",
"compilerOptions": {
"strict": true,
"baseUrl": ".",
"allowSyntheticDefaultImports": true,
"module": "commonjs",
"target": "es5",
"jsx": "react-jsx",
"allowJs": true,
"moduleResolution": "node",
"noEmit": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"isolatedModules": true,
"paths": {
"@images/*": ["./src/asset/images/*"],
"@components/*": ["./src/components/*"],
"@utils/*": ["./src/utils/*"],
"@view/*": ["./src/view/*"],
"@store/*": ["./src/store/*"],
"@constants/*": ["./src/constants/*"],
"@texts/*": ["./src/components/texts/*"],
"@icons/*": ["./src/assets/icons/*"],
"@/*": ["./src/*"]
}
},
// "include": ["../client/src/Module*", "./src*"]
"exclude": ["./node_modules/component/*", "./node_modules/components/*"]
}