A world-class math input for the web
at main 11 lines 211 B view raw
1import { defineConfig } from "tsdown"; 2 3export default defineConfig({ 4 entry: ["src/index.ts"], 5 format: ["esm", "cjs"], 6 dts: true, 7 clean: true, 8 deps: { 9 neverBundle: ["react", "react-dom"], 10 }, 11});