UNPKG

@nodejs-loaders/tsx

Version:

Extend node to support JSX & TSX via customization hooks.

9 lines (6 loc) 223 B
import { isMainThread } from 'node:worker_threads'; import module from 'node:module'; if (isMainThread && 'register' in module) { module.register('./tsx.loader.mjs', import.meta.url); } export * from './tsx.loader.mjs';