-
-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
syntax error in custom.typings.d.ts #828
Comments
IntelliJ has been complaining about this for me as well. I'd love to know what's the proper way of resolving this.. |
I have a related problem with |
Awesome, thanks. I'm also getting |
Did you try VS Code |
Does ee0c85e resolves your issue? |
Using visual studio 2015 with typescript 2.02 beta, this problem still exists. |
Currently the first non-comment line in custom.d.ts is as follows
declare module "*";
but that seems to give a syntax error on the semicolon with the message '{ expected', as the compiler expects a curly brace. Changing it to the following seems to fix it
declare module "*" {}
Is that a valid fix?
The text was updated successfully, but these errors were encountered: