-
Beta Was this translation helpful? Give feedback.
Answered by
da1z
Feb 1, 2025
Replies: 1 comment 1 reply
-
It looks like this bit of package.json might be the problem: {
"exports": {
"default": "./src/index.ts"
}
} Did you mean?: {
"exports": {
".": {
"default": "./src/index.ts"
}
}
} |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
the problem in my case was in imports
import * as schema from "@/schema";
i think this is one of limitations described here. can not usepath
, changed everything to relative import and all good https://turbo.build/repo/docs/core-concepts/internal-packages#limitations-and-tradeoffs