我在./src文件夹中有这种代码:
var fs = require('fs')
var config = require("../config.json")
运行流程时,出现此错误:
var config = require("../config.json")
^^^^^^^^^^^^^^^^^^ ../config.json. Required module not found
对我来说,这是一个有效的声明,因为最终版本将在config.json的文件夹中,有没有办法指示flowtype不检查这种类型的错误?
由于
答案 0 :(得分:0)
您可以通过将以下内容添加到.flowconfig
:
[ignore]
.*\.json
答案 1 :(得分:0)
如果您还想检查json文件,可以使用module.name_mapper
映射到json文件的位置。 Flow会自动检查td {
width: 100%;
}
d json文件。
它看起来像是:
require