-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy path.flowconfig
24 lines (18 loc) · 903 Bytes
/
.flowconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[ignore]
[include]
[libs]
[lints]
[options]
module.system.node.resolve_dirname=node_modules
module.name_mapper='^actions\(.*\)$' -> '<PROJECT_ROOT>/src/actions/\1'
module.name_mapper='^api\(.*\)$' -> '<PROJECT_ROOT>/src/api/\1'
module.name_mapper='^components\(.*\)$' -> '<PROJECT_ROOT>/src/components/\1'
module.name_mapper='^core\(.*\)$' -> '<PROJECT_ROOT>/src/core/\1'
module.name_mapper='^epics\(.*\)$' -> '<PROJECT_ROOT>/src/epics/\1'
module.name_mapper='^migrations\(.*\)$' -> '<PROJECT_ROOT>/src/migrations/\1'
module.name_mapper='^plugins\(.*\)$' -> '<PROJECT_ROOT>/src/plugins/\1'
module.name_mapper='^reducers\(.*\)$' -> '<PROJECT_ROOT>/src/reducers/\1'
module.name_mapper='^register\(.*\)$' -> '<PROJECT_ROOT>/src/register/\1'
module.name_mapper='^sections\(.*\)$' -> '<PROJECT_ROOT>/src/sections/\1'
module.name_mapper='^selectors\(.*\)$' -> '<PROJECT_ROOT>/src/selectors/\1'
[strict]