10 lines
313 B
TypeScript
10 lines
313 B
TypeScript
const nxJsBabelPreset = require('@nrwl/js/babel');
|
|
|
|
/** @deprecated Use `@nrwl/js/babel`. */
|
|
module.exports = function (api: any, options: any = {}) {
|
|
console.warn(
|
|
'`@nrwl/web/babel` has been deprecated. Use `@nrwl/js/babel` instead in your .babelrc files.'
|
|
);
|
|
return nxJsBabelPreset(api, options);
|
|
};
|