如何告诉FlowType忽略一些json要求?

时间:2017-06-15 00:10:46

标签: flowtype

我在./src文件夹中有这种代码:

var fs = require('fs')
var config = require("../config.json")

运行流程时,出现此错误:

var config = require("../config.json")
                        ^^^^^^^^^^^^^^^^^^ ../config.json. Required module not found

对我来说,这是一个有效的声明,因为最终版本将在config.json的文件夹中,有没有办法指示flowtype不检查这种类型的错误?

由于

2 个答案:

答案 0 :(得分:0)

您可以通过将以下内容添加到.flowconfig

来使流忽略所有json文件
[ignore]
.*\.json

答案 1 :(得分:0)

如果您还想检查json文件,可以使用module.name_mapper映射到json文件的位置。 Flow会自动检查td { width: 100%; } d json文件。

它看起来像是:

require