Is there a way to upload something like Vue component libraries to JSR? #753
Unanswered
mybearworld
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Vue files use their own syntax with
.vue
, so they need to be built. NPM is fine with .js and .d.ts files which can be generated by Vite andvite-plugin-dts
. This is discouraged by JSR, however, with the reasoning that you can just upload Typescript files instead. So what should you do for Vue files?Beta Was this translation helpful? Give feedback.
All reactions