-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.flowconfig
28 lines (23 loc) · 896 Bytes
/
.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
[ignore]
.*/test/.*
.*/internals/server/.*
.*/node_modules/graphviz/documentation.json
.*/node_modules/eslint-plugin-jsx-a11y/.*
.*/node_modules/polished/.*
.*/**/*.test.js
[include]
[libs]
flow-typed
[options]
esproposal.decorators=ignore
suppress_comment= \\(.\\|\n\\)*\\$FlowFixMe
module.ignore_non_literal_requires=true
module.name_mapper='.*\(.(css|json|png|jpg)\)' -> 'empty/object'
module.name_mapper='^app' ->'<PROJECT_ROOT>/client'
module.name_mapper='^assets' ->'<PROJECT_ROOT>/client/assets'
module.name_mapper='^utils' ->'<PROJECT_ROOT>/client/utils'
module.name_mapper='^pages' ->'<PROJECT_ROOT>/client/pages'
module.name_mapper='^components' ->'<PROJECT_ROOT>/client/components'
module.name_mapper='^modules' ->'<PROJECT_ROOT>/client/modules'
module.name_mapper='^constants' ->'<PROJECT_ROOT>/client/constants'
module.name_mapper='^services' ->'<PROJECT_ROOT>/client/services'