forked from Nozbe/WatermelonDB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.flowconfig
39 lines (33 loc) · 1.36 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]
<PROJECT_ROOT>/.cache
<PROJECT_ROOT>/__tests__
<PROJECT_ROOT>/dist
<PROJECT_ROOT>/dev
<PROJECT_ROOT>/examples
.*/node_modules/react\-native/.*
[include]
[libs]
flow-typed/
[options]
esproposal.optional_chaining=enable
; strip_root=true
emoji=true
module.ignore_non_literal_requires=true
module.file_ext=.js
module.name_mapper='^adapters\/\(.*\)$' -> '<PROJECT_ROOT>/src/adapters/\1'
module.name_mapper='^decorators$' -> '<PROJECT_ROOT>/src/decorators'
module.name_mapper='^decorators\/\(.*\)$' -> '<PROJECT_ROOT>/src/decorators/\1'
module.name_mapper='^observation\/\(.*\)$' -> '<PROJECT_ROOT>/src/observation/\1'
module.name_mapper='^utils\/\(.*\)$' -> '<PROJECT_ROOT>/src/utils/\1'
module.name_mapper='^Database$' -> '<PROJECT_ROOT>/src/Database'
module.name_mapper='^Database\/\(.*\)$' -> '<PROJECT_ROOT>/src/Database/\1'
module.name_mapper='^Collection$' -> '<PROJECT_ROOT>/src/Collection'
module.name_mapper='^CollectionMap$' -> '<PROJECT_ROOT>/src/CollectionMap'
module.name_mapper='^Model$' -> '<PROJECT_ROOT>/src/Model'
module.name_mapper='^Query$' -> '<PROJECT_ROOT>/src/Query'
module.name_mapper='^QueryDescription$' -> '<PROJECT_ROOT>/src/QueryDescription'
module.name_mapper='^RawRecord$' -> '<PROJECT_ROOT>/src/RawRecord'
module.name_mapper='^Relation$' -> '<PROJECT_ROOT>/src/Relation'
module.name_mapper='^Schema$' -> '<PROJECT_ROOT>/src/Schema'
[version]
^0.79.1