Skip to content

Instantly share code, notes, and snippets.

@olegpolyakov
olegpolyakov / jsx-loader.js
Created January 13, 2023 04:27
Node JSX Loader
import { pathToFileURL } from 'url';
import { transformAsync } from '@babel/core';
const baseURL = pathToFileURL(`${process.cwd()}/`).href;
const extensionsRegex = /\.jsx$/;
const supportedModuleFormats = ['module', 'commonjs'];
const babelOptions = {
presets: [
['@babel/preset-react']
]