From 0be61f76e5519b598b0ca800ef431a58167ae5f3 Mon Sep 17 00:00:00 2001 From: scottrepreneur Date: Thu, 21 Dec 2023 10:42:43 -0600 Subject: [PATCH] update outputs --- package.json | 6 +++--- tsconfig.json | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 3c2243d..5f8745f 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,10 @@ { "name": "@raidguild/design-system", - "version": "0.5.1", + "version": "0.5.2", "license": "MIT", "author": "Raid Guild", - "main": "./dist/cjs/src/index.js", - "module": "./dist/esm/src/index.js", + "main": "./dist/src/index.js", + "module": "./dist/src/index.js", "types": "./dist/index.d.ts", "type": "module", "homepage": "https://raid-guild.github.io/design-system", diff --git a/tsconfig.json b/tsconfig.json index 644620c..7f72721 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -31,6 +31,7 @@ "noUnusedParameters": true, // Flags unused function parameters. "noFallthroughCasesInSwitch": true, // Requires handling all cases in a switch statement. "declaration": true, // Generates declaration files for TypeScript. + "declarationDir": "dist", "allowSyntheticDefaultImports": true } }