You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 10, 2024. It is now read-only.
Description
Package.json does not export typing information:
"exports": { "import": "./dist/mjs/index.js", "require": "./dist/cjs/index.cjs", "default": "./dist/alpaca.browser.min.js" },
Expected
Package.json should export typing information
"exports": { "import": "./dist/mjs/index.js", "require": "./dist/cjs/index.cjs", "default": "./dist/alpaca.browser.min.js", "types": "./@types/index.d.ts" },
Reproduction
npm create vite@latest
npm i @master-chief/alpaca
import { AlpacaClient, AlpacaStream } from "@master-chief/alpaca"
Additional
Not a huge deal but requires modification of the package in node_modules in order to produce IDE hinting
making this modification in the node_modeules package (shown in expected section) fixes the issue
The text was updated successfully, but these errors were encountered: