2 unstable releases
0.3.0 | Oct 8, 2024 |
---|---|
0.2.0 | Jun 24, 2024 |
#8 in #helps
208 downloads per month
13KB
189 lines
swc plugin remove-console
A swc plugin helps you remove your console.*
statement
Notice *
now support:
log
warn
error
info
Configure
First ensure you've installed swc
and swc-plugin-remove-console
, then add following these codes in your .swcrc
file
{
"jsc": {
"experimental": {
"plugins": [
[
"swc-plugin-remove-console",
{
"exclude": ["error"] // this config is optional, default is [], you can pass `log`, `warn`, `error`, `info` to exclude some of them
}
]
]
}
}
}
Dependencies
~5.5MB
~97K SLoC