With a fresh workspace install, I try to use Bit.dev for the first time. My environement iscreate-react-app + typescript +styled-components + storybook.
When I try to build with [email protected] compiler, I've got bunch of Duplicate identifier errors.

Part of my Package.json file.

errors
Same effect/problem in our project.
Facing same issue
Any update guys? keep getting this error while trying to tag components
It happens because @types/styled-components require @types/react-native and it's causing problems with DOM lib.
Downgrade to version 4.1.8 of @types/styled-components should solve it because it not require @types/react-native:
npm i @types/[email protected] --save-dev --save-exact
I'll soon publish a new version of React-typescript compiler that solve this issue without downgrading the @types/styled-components version, the compiler will remove the @types/react-native from the node_modules folder inside the build process of the component.
https://github.com/DefinitelyTyped/DefinitelyTyped/issues/33311
https://stackoverflow.com/questions/54706594/types-styled-components-duplicate-identifier-formdata
I published a new version of the React-typescript compiler to solve this issue:
https://bit.dev/bit/envs/compilers/react-typescript?version=3.1.63
Most helpful comment
Same effect/problem in our project.