forked from mattermost/mattermost-redux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.flowconfig
33 lines (28 loc) · 1.05 KB
/
.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
25
26
27
28
29
30
31
32
33
[ignore]
<PROJECT_ROOT>/node_modules/.*
<PROJECT_ROOT>/action_types/.*
<PROJECT_ROOT>/actions/.*
<PROJECT_ROOT>/client/.*
<PROJECT_ROOT>/constants/.*
<PROJECT_ROOT>/reducers/.*
<PROJECT_ROOT>/selectors/.*
<PROJECT_ROOT>/store/.*
<PROJECT_ROOT>/utils/.*
<PROJECT_ROOT>/types/.*
[include]
[libs]
[lints]
[options]
module.system.node.resolve_dirname=node_modules
suppress_comment= \\(.\\|\n\\)*\\$FlowFixMe
module.name_mapper='^action_types\(.*\)$' -> '<PROJECT_ROOT>/src/action_types/\1'
module.name_mapper='^actions\(.*\)$' -> '<PROJECT_ROOT>/src/actions/\1'
module.name_mapper='^client\(.*\)$' -> '<PROJECT_ROOT>/src/client/\1'
module.name_mapper='^constants\(.*\)$' -> '<PROJECT_ROOT>/src/constants/\1'
module.name_mapper='^reducers\(.*\)$' -> '<PROJECT_ROOT>/src/reducers/\1'
module.name_mapper='^selectors\(.*\)$' -> '<PROJECT_ROOT>/src/selectors/\1'
module.name_mapper='^store\(.*\)$' -> '<PROJECT_ROOT>/src/store/\1'
module.name_mapper='^utils\(.*\)$' -> '<PROJECT_ROOT>/src/utils/\1'
module.name_mapper='^types\(.*\)$' -> '<PROJECT_ROOT>/src/types/\1'
[version]
0.95.1