Only emit declaration files with TypeScript#49
Merged
kenwheeler merged 3 commits intourql-graphql:masterfrom Feb 22, 2018
Merged
Only emit declaration files with TypeScript#49kenwheeler merged 3 commits intourql-graphql:masterfrom
kenwheeler merged 3 commits intourql-graphql:masterfrom
Conversation
Contributor
|
Niiiiiice |
kitten
added a commit
that referenced
this pull request
Feb 5, 2020
* Rewrite some small hotpaths This rewrites some hotpaths that V8 seems to be struggling with in particular. * Unwrap some more loops * Fix type in src/ast * Replace forEachFieldNode with iterator this approach does add .1kB min+gzip but it helps V8 a little by replacing the (cheap-ish) closure creation on forEachFieldNode * Upgrade to pessimism 1.1.1 * Update invalidate operation with iterator * Fix store test * Add dependencies to invalidate operation * Fix typename field invalidation and query field
kitten
pushed a commit
that referenced
this pull request
Feb 14, 2020
Bug: Add muted to video to support autoplay
kitten
pushed a commit
that referenced
this pull request
Feb 14, 2020
1. Added footer link to formidable.com
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
In TypeScript 2.8 (and in TypeScript 2.7.2, but low-key) we added the
emitDeclarationOnlyflag. This flag basically says "I only want to create.d.tsfiles", which is basically perfect for libraries that use Babel to emit JS.C.C. @mhegazy (and thanks @nojvek!)