From 6bd7573b881f97e2abdb4a3d937068c6426a4dad Mon Sep 17 00:00:00 2001 From: Jacob Nguyen <76754747+jacoobes@users.noreply.github.com> Date: Mon, 8 May 2023 00:29:10 -0500 Subject: [PATCH] revert: multiple entry points --- package.json | 3 +++ tsup.config.js | 1 + 2 files changed, 4 insertions(+) diff --git a/package.json b/package.json index c517787..b2c647d 100644 --- a/package.json +++ b/package.json @@ -3,6 +3,9 @@ "packageManager": "yarn@3.5.0", "version": "2.6.1", "description": "A complete, customizable, typesafe, & reactive framework for discord bots.", + "main": "./dist/esm/index.mjs", + "module": "./dist/cjs/index.cjs", + "types": "dist/index.d.ts", "exports": { ".": { "import": "./dist/esm/index.mjs", diff --git a/tsup.config.js b/tsup.config.js index f347d7f..f9e89cf 100644 --- a/tsup.config.js +++ b/tsup.config.js @@ -50,4 +50,5 @@ export default defineConfig([ }, ...shared, }, + ]);