Skip to content
This repository was archived by the owner on Apr 11, 2019. It is now read-only.

Commit 07667ce

Browse files
authored
Update .flowconfig
1 parent ae8fe3a commit 07667ce

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

.flowconfig

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
.*/node_modules/.*
33

44
[include]
5+
./app/src/
6+
./app/src/components/
7+
./app/src/containers/
8+
./app
59

610
[libs]
711
config/flow-typed/npm
@@ -10,6 +14,11 @@ config/flow-typed/npm
1014
suppress_comment=.*\\$FlowFixMe
1115
suppress_comment=.*\\$FlowInvalidInputTest
1216
module.name_mapper='\(react-redux\)' -> '<PROJECT_ROOT>/config/flow-typed/GeneralStub.js'
13-
module.name_mapper='\(react\)' -> '<PROJECT_ROOT>/config/flow-typed/GeneralStub.js'
1417
module.name_mapper='\(redux\)' -> '<PROJECT_ROOT>/config/flow-typed/GeneralStub.js'
15-
module.name_mapper='.*\(.scss\|.png\)' -> '<PROJECT_ROOT>/config/flow-typed/GeneralStub.js'
18+
module.name_mapper='.*\(.scss\|.png\)' -> '<PROJECT_ROOT>/config/flow-typed/GeneralStub.js'
19+
module.name_mapper='^containers\/\(.*\)$' -> '<PROJECT_ROOT>/app/src/containers/\1'
20+
module.name_mapper='^containers$' -> '<PROJECT_ROOT>/app/src/containers'
21+
module.name_mapper='^components\/\(.*\)$' -> '<PROJECT_ROOT>/app/src/components/\1'
22+
module.name_mapper='^components$' -> '<PROJECT_ROOT>/app/src/components'
23+
module.name_mapper='^utils\/\(.*\)$' -> '<PROJECT_ROOT>/app/src/utils/\1'
24+
module.name_mapper='^utils$' -> '<PROJECT_ROOT>/app/src/utils'

0 commit comments

Comments
 (0)