🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
11 lines
262 B
JavaScript
Executable File
11 lines
262 B
JavaScript
Executable File
const { Component } = require('./Component');
|
|
|
|
module.exports = class BabelConfig extends Component {
|
|
/**
|
|
* @param {import('@babel/core').TransformOptions} config
|
|
*/
|
|
register(config) {
|
|
this.context.config.babelConfig = config;
|
|
}
|
|
};
|