-
Notifications
You must be signed in to change notification settings - Fork 3
/
.flowconfig
35 lines (28 loc) · 1.03 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
[include]
# Including these files causes issues.
[ignore]
.*/infrastructure/*
*/build/*
# node modules that don't work well with flow. fbjs -lol
.*/node_modules/fbjs/.*
.*/node_modules/stylelint/.*
.*/node_modules/flow-remove-types/.*
.*/node_modules/flow-coverage-report/.*
[libs]
# Official "flow-typed" repository definitions.
flow-typed/npm
# Note: the following definitions come bundled with flow. It can be handy
# to reference them.
# React: https://github.com/facebook/flow/blob/master/lib/react.js
# Javascript: https://github.com/facebook/flow/blob/master/lib/core.js
# Node: https://github.com/facebook/flow/blob/master/lib/node.js
# DOM: https://github.com/facebook/flow/blob/master/lib/dom.js
# BOM: https://github.com/facebook/flow/blob/master/lib/bom.js
# CSSOM: https://github.com/facebook/flow/blob/master/lib/cssom.js
# IndexDB: https://github.com/facebook/flow/blob/master/lib/indexeddb.js
[options]
esproposal.class_static_fields=enable
esproposal.class_instance_fields=enable
esproposal.export_star_as=enable
[version]
^0.42.0