javascript/react-native
[react-native] Error build-assets - new decorators proposal is not supported yet. You must pass the"legacy": true option
738
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를 설치
1 | npm install --save-dev @babel/plugin-proposal-decorators | cs |
2. tsconfig.json 파일에 다음 라인을 입력
1 | ["@babel/plugin-proposal-decorators", { "legacy": true }], | cs |
참고: https://github.com/mirumee/saleor/issues/2179