forked from makzu/lotcastingatemi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.flowconfig
39 lines (34 loc) · 1.81 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
34
35
36
37
38
39
[ignore]
[include]
[libs]
flow-typed
[lints]
[options]
module.file_ext=.md
module.file_ext=.js
module.file_ext=.jsx
module.file_ext=.ts
module.file_ext=.tsx
module.name_mapper='^components$' -> '<PROJECT_ROOT>/app/javascript/lca/components/'
module.name_mapper='^components\/\(.*\)$' -> '<PROJECT_ROOT>/app/javascript/lca/components/\1'
module.name_mapper='^containers$' -> '<PROJECT_ROOT>/app/javascript/lca/containers/'
module.name_mapper='^containers\/\(.*\)$' -> '<PROJECT_ROOT>/app/javascript/lca/containers/\1'
module.name_mapper='^ducks$' -> '<PROJECT_ROOT>/app/javascript/lca/ducks/'
module.name_mapper='^ducks\/\(.*\)$' -> '<PROJECT_ROOT>/app/javascript/lca/ducks/\1'
module.name_mapper='^icons$' -> '<PROJECT_ROOT>/app/javascript/lca/icons/'
module.name_mapper='^icons\/\(.*\)$' -> '<PROJECT_ROOT>/app/javascript/lca/icons/\1'
module.name_mapper='^hooks$' -> '<PROJECT_ROOT>/app/javascript/lca/hooks'
module.name_mapper='^middleware$' -> '<PROJECT_ROOT>/app/javascript/lca/middleware/'
module.name_mapper='^middleware\/\(.*\)$' -> '<PROJECT_ROOT>/app/javascript/lca/middleware/\1'
module.name_mapper='^selectors$' -> '<PROJECT_ROOT>/app/javascript/lca/selectors/'
module.name_mapper='^selectors\/\(.*\)$' -> '<PROJECT_ROOT>/app/javascript/lca/selectors/\1'
module.name_mapper='^styles$' -> '<PROJECT_ROOT>/app/javascript/lca/styles/'
module.name_mapper='^styles\/\(.*\)$' -> '<PROJECT_ROOT>/app/javascript/lca/styles/\1'
module.name_mapper='^utils$' -> '<PROJECT_ROOT>/app/javascript/lca/utils/'
module.name_mapper='^utils\/\(.*\)$' -> '<PROJECT_ROOT>/app/javascript/lca/utils/\1'
module.name_mapper='^Docs\/\(.*\)$' -> '<PROJECT_ROOT>/docs/\1'
module.system.node.resolve_dirname=node_modules
suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe
suppress_comment=\\(.\\|\n\\)*\\$FlowThisIsOkayISwear
esproposal.optional_chaining=enable
[strict]