mirror of
https://gitee.com/wot-design-uni/wot-design-uni.git
synced 2025-12-06 09:08:51 +08:00
21 lines
372 B
JavaScript
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" }')
|
|
}
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|