umi-library
Version:
Library toolkit based on rollup and docz.
24 lines (21 loc) • 562 B
text/typescript
import { join } from 'path';
import slash from 'slash2';
import getBabelConfig from './getBabelConfig';
interface IRegisterBabelOpts {
cwd: string;
only: string[];
}
export default function (opts: IRegisterBabelOpts) {
const { cwd, only } = opts;
const babelConfig = getBabelConfig({
target: 'node',
typescript: true,
});
require('@babel/register')({
...babelConfig,
extensions: ['.es6', '.es', '.jsx', '.js', '.mjs', '.ts', '.tsx'],
only: only.map(file => slash(join(cwd, file))),
babelrc: false,
cache: false,
});
}