Files
nats-python/openapi_templete/node_modules/babel-plugin-source-map-support/dist/index.js
T
2026-06-01 13:17:37 +02:00

18 lines
377 B
JavaScript

'use strict';
var helperModuleImports = require('@babel/helper-module-imports');
const IMPORT = 'source-map-support/register';
function babelPluginSourceMapSupport () {
return {
visitor: {
Program (path) {
helperModuleImports.addSideEffect(path, IMPORT);
}
}
}
}
module.exports = babelPluginSourceMapSupport;