I have carefully followed the steps provided in the documentation and also referenced the information given here. As instructed, I updated my package.json
file with the following configurations:
},
"babel": {
"plugins": [
"@babel/plugin-proposal-nullish-coalescing-operator",
"@babel/plugin-proposal-optional-chaining"
]
},
"dependencies": {
However, despite these changes, I am encountering the following error message:
Support for the experimental syntax 'optionalChaining' isn't currently enabled
I'm unsure of what mistake I might be making. Any guidance or suggestions would be greatly appreciated.