Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

webpack 5 + Vue + TS-Loader how to use generics? #1620

Open
Anubarak opened this issue Jul 4, 2023 · 1 comment
Open

webpack 5 + Vue + TS-Loader how to use generics? #1620

Anubarak opened this issue Jul 4, 2023 · 1 comment

Comments

@Anubarak
Copy link

Anubarak commented Jul 4, 2023

I tried to use generics with webpack and while I have no problems in my current Vite project I have no clue how to make it working with webpack.

I always receive TS2304: Cannot find name 'T'.
For example

<script setup lang="ts" generic="T extends string">
interface Props {
  modelValue: T;
}
const props = defineProps<Props>();
</script>

<template>{{ modelValue }}</template>

Is there a way to enable generics with this TS Loader and webpack 5? I created a minimal repo here
https://codesandbox.io/p/sandbox/webpack-vue-3-forked-p67wfr?welcome=true

Expected Behaviour

  • Vue generics should work

Actual Behaviour

  • Vue generics won't work -> see error above

Steps to Reproduce the Problem

  • create a Vue component and try to use generics with webpack

Location of a Minimal Repository that Demonstrates the Issue.

https://codesandbox.io/p/sandbox/webpack-vue-3-forked-p67wfr?welcome=true

@Anubarak
Copy link
Author

So I guess this is not possible?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant