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

svelte with typescript. cannot find moudle #29

Open
shriharip opened this issue Jul 23, 2020 · 6 comments
Open

svelte with typescript. cannot find moudle #29

shriharip opened this issue Jul 23, 2020 · 6 comments
Labels
enhancement New feature or request

Comments

@shriharip
Copy link

Hi Jeff,

Svelte typescript with lang="ts".
I get the "Cannot find module 'sveltefire' or its corresponding type declarations."

thanks

@codediodeio codediodeio added the enhancement New feature or request label Jul 31, 2020
@codediodeio
Copy link
Owner

The next release will have better support for TypeScript, but currently you can solve this issue by creating a file named main.d.ts with this line:

declare module 'sveltefire';

@shriharip
Copy link
Author

Oh of course. Thanks. Forgot about that.

@guidobouman
Copy link

guidobouman commented Nov 28, 2020

The main.d.ts does not seem to get picked up by svelte-check? 🤔 And inline data binds don't work. let:data={myItem} yields the following error:Property 'key' does not exist on type 'unknown'.ts(2339). Any way to work around this?

@deemetree-at-satelligence
Copy link

deemetree-at-satelligence commented Dec 7, 2020

@guidobouman could you share your file organization? We have just been struggling with the same issue but have solved it also with a xyz.d.ts file in the code source.

@guidobouman
Copy link

guidobouman commented Dec 7, 2020

@deemetree-at-satelligence https://github.com/Q42/hack-for-good/tree/main/web

The Svelte project sits in a web folder. The main.d.ts file is next to the main.ts file.

A run of npm run validate gives a lot of errors. This includes Error: Cannot find module 'sveltefire' or its corresponding type declarations. (ts), which declare module 'sveltefire'; should solve, right?

@cupofjoakim
Copy link

cupofjoakim commented Sep 11, 2021

For beginners in typescript that are using sveltekit I'd just like to add that you can also add that declare module 'sveltefire'; to your src/global.d.ts file to make the warning go away for now.

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

No branches or pull requests

5 participants