babel-preset-jolt
Version:
Default babel configuration for jolt packages.
1 lines • 330 B
JavaScript
;var template=require('babel-template');var buildImport=template('require(ARGS)');var TYPE_IMPORT='Import';module.exports={inherits:require('babel-plugin-syntax-dynamic-import'),visitor:{CallExpression(path){if(path.node.callee.type!==TYPE_IMPORT){return;}path.replaceWith(buildImport({ARGS:path.node.arguments}));}}};