Skip to content

Commit

Permalink
chore: rewrite tsup.config.js to ESM
Browse files Browse the repository at this point in the history
  • Loading branch information
sapphi-red committed May 19, 2024
1 parent ec2bfff commit 5dc76e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tsup.config.js → tsup.config.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const { defineConfig } = require("tsup")
import { defineConfig } from "tsup"

module.exports = defineConfig((options) => {
export default defineConfig((options) => {
const common = defineConfig({
entry: ["src/index.js"],
platform: "browser",
Expand Down

0 comments on commit 5dc76e2

Please sign in to comment.