chore: init

This commit is contained in:
Kirk Lin 2023-12-06 20:34:27 +08:00
commit 30083154a8
23 changed files with 6418 additions and 0 deletions

12
build.config.ts Normal file
View file

@ -0,0 +1,12 @@
import { defineBuildConfig } from "unbuild";
export default defineBuildConfig({
entries: [
"src/index",
],
declaration: true,
clean: true,
rollup: {
emitCJS: true,
},
});