-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path.flowconfig
33 lines (27 loc) · 898 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
29
30
31
32
33
[ignore]
.*/node_modules/.*/__test__/
.*/node_modules/.*/__tests__/
.*/node_modules/.*/test/
.*/node_modules/.*/tests/
.*/node_modules/.*/node_modules/chalk/
.*/node_modules/babel.*
.*/node_modules/fbjs/
.*/node_modules/findup/test/
.*/node_modules/flow-coverage-report/
.*/node_modules/gatsby/
.*/node_modules/stylelint/
.*/node_modules/systemjs-builder/
<PROJECT_ROOT>/public/
[libs]
flow-typed/
[options]
esproposal.decorators=ignore
esproposal.class_static_fields=enable
munge_underscores=true
module.name_mapper='^config$' -> '<PROJECT_ROOT>/flow-stubs/ConfigStub.js'
module.name_mapper='.*\.s?css$' -> '<PROJECT_ROOT>/flow-stubs/CssStub.js'
module.name_mapper='.*\.\(svg\|png\|jpg\|gif\|json\|ico\|xml\|webm\|mp4\|flv\|ogg\)$' -> '<PROJECT_ROOT>/flow-stubs/FileStub.js'
suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe
suppress_comment=\\(.\\|\n\\)*\\$FlowMissingDefinition
[version]
^0.39.0