wot-design-uni/babel.config.js

21 lines
372 B
JavaScript

module.exports = {
presets: [
['@babel/preset-env', {
targets: { node: 'current' },
modules: 'commonjs'
}],
'@babel/preset-typescript'
],
plugins: [
function () {
return {
visitor: {
MetaProperty(path) {
path.replaceWithSourceString('{ url: "file://test" }')
}
}
}
}
]
}