[RN] SyntaxError: Cannot use import statement outside a module

SyntaxError: Cannot use import statement outside a module

CAUSE : import문을 컴파일 할 수 없어서 발생한 오류이다. babel관련 설정으로도 해결할 수 있으며, 아래와 같은 방법으로도 해결할 수 있다
SOLUTION :


/** package.json */

"transformIgnorePatterns": [
      "node_modules/(?!react-native|react-navigation)/"
    ]
}

좋은 웹페이지 즐겨찾기