-
Notifications
You must be signed in to change notification settings - Fork 310
/
.flowconfig
39 lines (32 loc) · 1.07 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
[version]
0.249.0
[ignore]
.*/build/.*
.*/dist/.*
.*/lib/.*
.*/malformed_package_json/.*
.*/next-example/.*
.*/esbuild-example/.*
[include]
[libs]
flow-typed
[lints]
[options]
emoji=true
casting_syntax=as
exact_by_default=true
experimental.const_params=true
module.use_strict=true
munge_underscores=true
suppress_type=$FlowFixMe
suppress_type=$FlowTODO
module.name_mapper='^@stylexjs\/shared$' -> '<PROJECT_ROOT>/packages/shared/src/index.js'
module.name_mapper='^@stylexjs\/shared\/lib\/\([a-zA-Z0-9_\-]+\)$' -> '<PROJECT_ROOT>/packages/shared/src/\1'
module.name_mapper='^@stylexjs/stylex$' -> '<PROJECT_ROOT>/packages/stylex/src/stylex.js'
module.name_mapper='^@stylexjs/stylex\/lib\/\([a-zA-Z0-9_\-]+\)$' -> '<PROJECT_ROOT>/packages/stylex/src/\1'
module.name_mapper='^@stylexjs/babel-plugin$' -> '<PROJECT_ROOT>/packages/babel-plugin/src/index.js'
module.name_mapper='^@stylexjs/babel-plugin\/lib\/\([a-zA-Z0-9_\-]+\)$' -> '<PROJECT_ROOT>/packages/babel-plugin/src/\1'
; type-stubs
module.system.node.resolve_dirname=flow_modules
module.system.node.resolve_dirname=node_modules
[strict]