Replace tsup with bun build + tsc, drop CJS

Co-authored-by: Ona <no-reply@ona.com>
This commit is contained in:
2026-02-28 01:51:01 +00:00
parent 2bdcada7c8
commit c8496ff5e9
5 changed files with 16 additions and 409 deletions

10
tsconfig.build.json Normal file
View File

@@ -0,0 +1,10 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"declaration": true,
"declarationMap": false,
"emitDeclarationOnly": true,
"outDir": "dist"
},
"include": ["src/index.ts", "src/jsx-runtime.ts", "src/jsx-dev-runtime.ts"]
}