Bit
使い方
セットアップ
bit init --package-manager yarn
bit import --compiler bit.envs/compilers/react-typescript
bit login
bit config # to show config
hook 関連のエラーが出るため、package.json に下記を追加しておくこと
{
"bit": {
"overrides": {
"*": {
"dependencies": {
"react": "-"
},
"peerDependencies": {
"react": "+"
}
}
}
}
}