The Nx Plugin for Web Components contains generators for managing Web Component applications and libraries within an Nx workspace. It provides:
- Integration with libraries such as Jest, Playwright, Cypress, and Storybook.
- Scaffolding for creating bu
const nxJsBabelPreset = require('@nx/js/babel');
/** @deprecated Use `@nx/js/babel`. */module.exports = function (api, options = {}) {
console.warn('`@nx/web/babel` has been deprecated. Use `@nx/js/babel` instead in your .babelrc files.');
returnnxJsBabelPreset(api, options);
};