-
Did a drop in upgrade from // this react component exports correctly as a function
export { Component } from './Component';
// this hook also exports as a function
export { useContainer } from './hooks/useContainer'
// these types previously did not emit anything, but now are emitted as defined.
export {
ComponentProps,
DynamicVariant,
StaticVariant,
ContainerProps,
} from './types'; Here was the snapshot with
and here is
According to this issue, my understanding is that I've not set any configuration for swc as well, this is a clean drop in. Was wondering if this is expected behaviour and I should update my snapshot, or if I should find some configuration option to match the old behaviour. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You should add |
Beta Was this translation helpful? Give feedback.
You should add
type
keywords if those are types. https://swc.rs/docs/migrating-from-tsc#importsnotusedasvalues-error