-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (26 loc) · 799 Bytes
/
tsconfig.json
File metadata and controls
26 lines (26 loc) · 799 Bytes
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
// prettier-ignore
{
"compilerOptions": {
"types": ["node"],
"skipLibCheck": true,
"baseUrl": ".",
"paths": {
// This needs to be mirrored in babel.config.js
// Components is a directory with subdirectories
"App": ["./App.tsx"],
"api/*": ["src/API/*"],
"types/*": ["src/@types/*"],
"assets": ["src/assets"],
"common/*": ["src/components/common/*"],
"AppLayer/*": ["./src/components/AppLayer/*"],
"AuthLayer/*": ["./src/components/AuthLayer/*"],
"navigation/*": ["src/navigation/*"],
"appRedux": ["src/redux"],
"appRedux/*": ["src/redux/*"],
"scheme/*": ["src/scheme/*"],
"utils/*": ["src/utils/*"],
},
"esModuleInterop": true,
"lib": ["es6", "esnext"],
"jsx": "react-native",
}}