-
[react-native] Error build-assets - new decorators proposal is not supported yet. You must pass the"legacy": true optionjavascript/react-native 2018. 12. 9. 23:48
[react-native Trouble Shooting]
Problem
> mobx 라이브러리를 사용하기 위해 decorator를 사용해야 했었는데 빌드 도중 다음 에러가 났다.
Error build-assets - new decorators proposal is not supported yet. You must pass the"legacy": true option
Solution
1. @babel/plugin-proposal-decorators를 설치1npm install --save-dev @babel/plugin-proposal-decoratorscs 2. tsconfig.json 파일에 다음 라인을 입력
1["@babel/plugin-proposal-decorators", { "legacy": true }],cs 참고: https://github.com/mirumee/saleor/issues/2179
'javascript > react-native' 카테고리의 다른 글
댓글