We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Somehow ts-loader does not manage to find types of interfaces like effectAPI and ExtendedlitElement. If I compile with just tsc it works.
effectAPI
ExtendedlitElement
tsc
Error:
TS2305: Module '"../../../lit-element-effector"' has no exported member 'effectAPI'.
Seems like related to the fact that ts-loader needs a declaration file .d.ts. Tried to do that but not able because of this issue.
.d.ts
Maybe the solution in this issue here can also help.
Solution for now: If you really need these interfaces like effectAPI and ExtendedlitElement you can do:
The text was updated successfully, but these errors were encountered:
Very weird thing is:
src/index.ts
typings
index.d.ts
Like this webpack+ts-loader magically compiles. Obviously tsc does not since index.d.ts is not a declaration file done like that...
Sorry, something went wrong.
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
Somehow ts-loader does not manage to find types of interfaces like
effectAPI
andExtendedlitElement
.If I compile with just
tsc
it works.Error:
Seems like related to the fact that ts-loader needs a declaration file
.d.ts
. Tried to do that but not able because of this issue.Maybe the solution in this issue here can also help.
Solution for now: If you really need these interfaces like
effectAPI
andExtendedlitElement
you can do:The text was updated successfully, but these errors were encountered: