文件名称:babel-plugin-import-asserts:babel插件,添加console.asserts来检查您的导入是否未定义
文件大小:2KB
文件格式:ZIP
更新时间:2024-06-12 23:36:04
JavaScript
babel-plugin-import-asserts Babel插件可以执行以下操作: 对于每个import {foo, bar} from './baz'; 它增加了 console.assert(foo, 'foo is undefined'); console.assert(baz, 'baz is undefined'); 在导入语句下方。 import foo from './baz'; 。 动机: 当您1)忘记从index.js文件中导出内容,然后2)尝试从另一个地方的index.js文件中导入内容时,很难调试错误 在使用默认导入时会遇到这种情况,尽管它必须是常规导入。 ( import foo from './bar'而不是import foo from './bar' import {foo} from './bar' )。 这种情况经常发生,目前没有默认的安
【文件预览】:
babel-plugin-import-asserts-master
----README.md(1KB)
----index.js(977B)
----package.json(608B)