Using multiple decorators will break code b/c the @babel/preset-typescript unexpectedly elides related imports (see https://github.com/babel/babel/issues/9838#issuecomment-601606360 for reference).
Setting onlyRemoveTypeImports to true will fix that behaviour.
This PR adds a test case for and mentions it in the README.
Using multiple decorators will break code b/c the
@babel/preset-typescript
unexpectedly elides related imports (see https://github.com/babel/babel/issues/9838#issuecomment-601606360 for reference). SettingonlyRemoveTypeImports
to true will fix that behaviour.This PR adds a test case for and mentions it in the README.