fix(editor): Fix chat package build warning related to types (no-changelog) (#15210)

This commit is contained in:
Alex Grozav
2025-05-08 12:18:04 +03:00
committed by GitHub
parent 019ea8b17f
commit 345475e81d

View File

@@ -17,14 +17,14 @@
"storybook": "storybook dev -p 6006 --no-open",
"build:storybook": "storybook build"
},
"types": "./dist/index.d.ts",
"main": "./dist/chat.umd.js",
"module": "./dist/chat.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/chat.es.js",
"require": "./dist/chat.umd.js",
"types": "./dist/index.d.ts"
"require": "./dist/chat.umd.js"
},
"./style.css": {
"import": "./dist/style.css",