Replies: 1 comment
-
|
Not currently. I'm working on improving the logs so they show more details about how the package.json entry points are parsed. Ignored entry points will still trigger warnings, but I'm hoping they appear in a less annoying way. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
My package.json has a
developmentexport/import condition for TS files to reference TS files directly during development mode (supported by IDEs and popular bundlers).package.json
{ "exports": { ".": { "development": "./src/index.ts", "types": "./dist/index.d.ts", "import": "./dist/index.js" } } }I'm getting annoying "Ignoring files outside of dist directory". Is there anyway that I can suppress this?
Beta Was this translation helpful? Give feedback.
All reactions