-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.flowconfig
More file actions
16 lines (14 loc) · 764 Bytes
/
Copy path.flowconfig
File metadata and controls
16 lines (14 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[libs]
./flow_typed/
[options]
module.system=haste
module.name_mapper='^\(.*\)\.\(scss\|css\)$' -> 'CSSModule'
module.name_mapper='^components\/\(.*\)$' -> '<PROJECT_ROOT>/src/components/\1'
module.name_mapper='^components$' -> '<PROJECT_ROOT>/src/components'
module.name_mapper='^containers\/\(.*\)$' -> '<PROJECT_ROOT>/src/containers/\1'
module.name_mapper='^containers$' -> '<PROJECT_ROOT>/src/containers'
module.name_mapper='^layouts\/\(.*\)$' -> '<PROJECT_ROOT>/src/layouts/\1'
module.name_mapper='^layouts$' -> '<PROJECT_ROOT>/src/layouts'
module.name_mapper='^store\/\(.*\)$' -> '<PROJECT_ROOT>/src/store/\1'
module.name_mapper='^modules\/\(.*\)$' -> '<PROJECT_ROOT>/src/modules/\1'
module.name_mapper='^styles\/\(.*\)$' -> '<PROJECT_ROOT>/src/styles/\1'