-
Notifications
You must be signed in to change notification settings - Fork 130
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
node_modules/gulp-typescript/typings/tsd.d.ts not found. #436
Comments
Hi, The bundled definitions should not rely on any external source. I just started to write It would still be great if it was possible to fix it in the meantime until the |
+1 |
1 similar comment
+1 |
Hi, I almost finished converting the project from The main issue was the missing definition for Here are some references: |
I'd prefer to use |
That would be great! @types packages are genereated from the types-2.0 branch of Definitely Typed, so you should send PRs there if some definition file of a dependency is outdated. |
I just submitted a PR to fix the issue using I'll let you know how it does work out. |
From a user perspective, I won't have much time this week, so if someone wants to use |
+1 for using |
Hi, About the decentralized repositories, I think you are right that "it works" to use I mostly care about your module not emitting errors and keeping it "contained" (it should not mess with global variables) so in the end you can choose whatever you prefer: I'm just happy that this issue is on the way to be solved. |
Version 3.1.0 now uses |
I'm using Typescript 2, to install types I just run
@types/LIBRARY_NAME
, I no longer have a typings folder, which is specially not needed since this library exports its types data.However, this line in
release/main.d.ts(1,1)
is giving me an issue:/// <reference path="../typings/tsd.d.ts" />
The module no longer has a typings folder when I install it with npm so this is referencing an inexistent folder. I get rid of that line and the error goes away. This is the error I'm seeing:
release/main.d.ts(1,1): error TS6053: File '/Users/gabriel/work/project_one/node_modules/gulp-typescript/typings/tsd.d.ts' not found.
The text was updated successfully, but these errors were encountered: