wallet-core/packages/taler-wallet-webextension/trim-extension.cjs
2023-05-05 08:52:58 -03:00

26 lines
762 B
JavaScript

// Simple plugin to trim extensions from the filename of relative import statements.
// Required to get linaria to work with `moduleResolution: "Node16"` imports.
// @author Florian Dold
//
module.exports = function ({ types: t }) {
return {
name: "trim-extension",
visitor: {
ImportDeclaration: (x) => {
const src = x.node.source;
if (src.value.startsWith(".")) {
if (src.value.endsWith(".js")) {
const newVal = src.value.replace(/[.]js$/, "");
x.node.source = t.stringLiteral(newVal);
}
}
if (src.value.endsWith(".jsx")) {
const newVal = src.value.replace(/[.]jsx$/, "");
x.node.source = t.stringLiteral(newVal);
}
},
},
};
};