-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.flowconfig
More file actions
38 lines (31 loc) · 1.4 KB
/
.flowconfig
File metadata and controls
38 lines (31 loc) · 1.4 KB
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
34
35
36
37
38
[ignore]
<PROJECT_ROOT>/node_modules/jss/.*.flow
<PROJECT_ROOT>/node_modules/material-ui/.*.flow
<PROJECT_ROOT>/node_modules/immutable/.*.flow
<PROJECT_ROOT>/node_modules/radium/.*
[include]
src/.*
flow-typed/.*
[libs]
[options]
module.ignore_non_literal_requires=true
module.system.node.resolve_dirname=node_modules
module.system.node.resolve_dirname=src
module.file_ext=.js
module.file_ext=.json
module.file_ext=.jsx
module.file_ext=.css
module.file_ext=.scss
module.name_mapper='^\(.*\)$' -> '<PROJECT_ROOT>/src/\1'
module.name_mapper='^\@public/\(.*\)$' -> '<PROJECT_ROOT>/public/\1'
module.name_mapper='^\@app/\(.*\)$' -> '<PROJECT_ROOT>/src/\1'
module.name_mapper='^\@env\(.*\)$' -> '<PROJECT_ROOT>/src/environment\1'
module.name_mapper='^\@cnt/\(.*\)$' -> '<PROJECT_ROOT>/src/containers/\1'
module.name_mapper='^\@cmp/\(.*\)$' -> '<PROJECT_ROOT>/src/components/\1'
module.name_mapper='^\@store/?\(.*\)$' -> '<PROJECT_ROOT>/src/store/\1'
module.name_mapper='^\@atom/\(.*\)$' -> '<PROJECT_ROOT>/src/components/atom/\1'
module.name_mapper='^\@mol/\(.*\)$' -> '<PROJECT_ROOT>/src/components/molecule/\1'
module.name_mapper='^\@org/\(.*\)$' -> '<PROJECT_ROOT>/src/components/organism/\1'
module.name_mapper='^\@page/\(.*\)$' -> '<PROJECT_ROOT>/src/components/page/\1'
module.name_mapper='^\@tmpl/\(.*\)$' -> '<PROJECT_ROOT>/src/components/template/\1'
module.name_mapper='^\@const/?\(.*\)$' -> '<PROJECT_ROOT>/src/constants/\1'