Enable import assertions for Babel in node.js

642 Views Asked by At
import data from './data.json' assert {type: "json"};

Got the below error message,

Add @babel/plugin-syntax-import-assertions (https://git.io/JUbkv) to the 'plugins' section of your Babel config to enable parsing.

Added the following in .babelrc file

{
    "plugins": [
      "@babel/plugin-syntax-import-assertions"
    ]
}

Anyone else encountered similar issue?

0

There are 0 best solutions below