close

[Solved] Error [ERR_PACKAGE_PATH_NOT_EXPORTED]: No “exports” main resolved

Are You Facing the Following error Error [ERR_PACKAGE_PATH_NOT_EXPORTED]: No “exports” main resolved in NodeJS? Then You are in right place. In this article, we will try to figure out how this error occurs and what are the possible fixes for this error. First of all, let’s explore how this error occurs.

What is Error [ERR_PACKAGE_PATH_NOT_EXPORTED]: No “exports” main resolved?

I am trying to make build but I am facing the following issue.

Error [ERR_PACKAGE_PATH_NOT_EXPORTED]: No "exports" main resolved in /app/node_modules/@babel/helper-compilation-targets/package.json

How To Fix Error [ERR_PACKAGE_PATH_NOT_EXPORTED]: No “exports” main resolved?

  1. How To Fix Error [ERR_PACKAGE_PATH_NOT_EXPORTED]: No “exports” main resolved?

    Just Reinstall all dependencies To Fix Error [ERR_PACKAGE_PATH_NOT_EXPORTED]: No “exports” main resolved error. First of all remove node_modules folder package-lock.json file OR yarn.lock file. You can manually delete it Or You can Run this command: rm -rf node_modules && rm -f package-lock.json && rm -f yarn.lock Then, clear your cache with help of this command: npm cache clean –force And now, Reinstall all dependencies by running npm install just like this: npm install Now, your error will be solved. Thanks.

  2. Error [ERR_PACKAGE_PATH_NOT_EXPORTED]: No “exports” main resolved

    To Fix Error [ERR_PACKAGE_PATH_NOT_EXPORTED]: No “exports” main resolved Just run npm update command in your terminal and then run npm audit fix –force command: npm update && npm audit fix –force If the npm update command fails then run the update command with force just like this: npm update –force && npm audit fix –force And now, your error will be resolved.

Solution 1: Run audit fix

To Fix Error [ERR_PACKAGE_PATH_NOT_EXPORTED]: No “exports” main resolved Just run npm update command in your terminal and then run npm audit fix –force command.

npm update && npm audit fix --force

If the npm update command fails then run the update command with force just like this.

npm update --force && npm audit fix --force

And now, your error will be resolved.

Solution 2: Reinstall all dependencies

Just Reinstall all dependencies To Fix Error [ERR_PACKAGE_PATH_NOT_EXPORTED]: No “exports” main resolved error. First of all remove node_modules folder package-lock.json file OR yarn.lock file. You can manually delete it Or You can Run this command.

rm -rf node_modules && rm -f package-lock.json && rm -f yarn.lock

Then, clear your cache with help of this command.

npm cache clean --force

And now, Reinstall all dependencies by running npm install just like this.

npm install

Now, your error will be solved. Thanks.

Solution 3: Install babel/helper-compilation-targets

As we can see in error babel/helper-compilation-targets package is causing this error So We need to install babel/helper-compilation-targets by running this command.

# For NPM Users
npm install --save-dev @babel/helper-compilation-targets

# For Yarn Users
yarn add @babel/helper-compilation-targets --dev

Hope, Now your error will be solved. Thank You.

Solution 4: Install LTS version

If nothing is working then You Just need to update your NodeJS to the LTS version. The current version is 16.17.0 LTS. If You are using NVM then use this command.

nvm install --lts

after updating the node your error will be resolved. Thanks.

Conclusion

It’s all About this error. I hope We Have solved Your error. Comment below Your thoughts and your queries. Also, Comment below on which solution worked for you.

Also, Read

Leave a Comment