10 lines
259 B
JavaScript
10 lines
259 B
JavaScript
// Registers our custom JSX ESM loader using Node's stable register() API
|
|
import { register } from 'node:module';
|
|
import { pathToFileURL } from 'node:url';
|
|
|
|
// Resolve relative to project root cwd
|
|
register('./scripts/jsx-loader.mjs', pathToFileURL('./'));
|
|
|
|
|
|
|