我使用babel和webpack在es2015 app构建中导入一些html标记
import MARKUP from './markup.html';
但是flowtype报告错误
./markup.html. Required module not found
我已经尝试过添加一个映射器:
module.file_ext=.html
module.name_mapper.extension='html' -> 'interfaces.flow/HTMLFlowStub.js'
使用以下存根:
// @flow
const emptyHTMLModule: string = '';
export default emptyHTMLModule;
但错误仍然存在。
有什么问题,是不是有一种方法可以调试这种问题?
答案 0 :(得分:1)
难以置信的简单解决方案:我忘记了忽略html文件。
.flowconfig
[ignore]
; .*\.html