swc-plugin-ignore-import
v0.2.0
Published
SWC plugin to ignore and remove certain imports based on configuration
Readme
SWC plugin to ignore and remove certain imports based on configuration
Inspired by babel-plugin-ignore-import, and since I needed this functionality it was a blocker to moving fully utilizing SWC.
import { transformSync } from "@swc/core";
const output = transformSync(input, {
jsc: {
experimental: {
plugins: [
[
"swc-plugin-ignore-import",
{
pattern: ".scss$",
}
]
],
},
},
});Code style
cargo fmtVersion history
License
Licensed under the MIT license.
Copyright (c) Juga Paazmaya [email protected]
