updated package.json; refactored code > imports/exports

This commit is contained in:
Lechner Julian - FrauJulian
2025-07-27 17:54:25 +02:00
parent 68cadaaaa3
commit ac201235a7
9 changed files with 111 additions and 74 deletions
+4 -4
View File
@@ -1,10 +1,10 @@
import { defineConfig } from "tsup";
import {defineConfig} from "tsup";
export default defineConfig({
format: [ "cjs", "esm" ],
format: ["cjs", "esm"],
entry: ["./src/index.ts"],
dts: true,
shims: true,
skipNodeModulesBundle: true,
clean: true,
});
});