@noopjs/compiler
v1.1.0
Published
Compiles `.noop.tsx` files to vanilla JavaScript at build time. Transforms JSX into direct DOM operations — no virtual DOM, no runtime framework.
Downloads
324
Readme
@noopjs/compiler
Compiles .noop.tsx files to vanilla JavaScript at build time. Transforms JSX into direct DOM operations — no virtual DOM, no runtime framework.
import { compile } from '@noopjs/compiler';
const result = compile(source, { filename: 'app.noop.tsx' });
console.log(result.code); // vanilla JSAlso exports createTailwindResolver for Tailwind v4 token integration.
Part of the NoopJS framework.
