Skip to content

Commit 245a998

Browse files
authored
Merge master into release 2.1 (microsoft#12160)
* Use a single ShimMap class, and indicate that iteration always yields string keys (which it did before too) * Remove emacs-added newline at end of baseline * Remove space at end of line in baseline * Add numeric indexer to strings and remove lint * Update baselines with spread string's numeric indexers * Reset baseline line number to the locally incorrect value * Remove trailing newline from baseline again * Respond to PR comments * Refactor getTypeFromTypeLiteral, from PR comments * Fix lint * Use same literal comparison rules for switch/=== switch was missing the rule for converting literal types to the literal base type if needed. * Add switch comparability test and update baselines * Push eitherIsNotLiteral check into isTypeEqualityComparableTo Since all callers need this check -- it's how equality is supposed to work everywhere. * Update baselines There are more literal types in error messages because error reporting no longer has the advantage of calls to getBaseLiteralType * Adds ES5 to ES3 transformer for reserved words * Minor cleanup * Cleaned up emit of enum declaration * Return both ts and js results from module resolution, and don't have moduleNameResolver responsible for omitting files based on compiler options * Instead of getResolutionOrDiagnostic, use getResolutionDiagnostic and avoid using resolution.resolvedFileName if the diagnostic is defined. * Remove "ResolvedModuleFromHost" type and just make `resolvedTsFileName` and `resolvedJsFileName` optional properties (but still automatically infer one of them to supply if the host supplied neither) * Remove type inference for spread types * Update inference test for spread types * Make spread assignability and apparent type stricter Assignability now does not allow properties to the left of a type parameter. Apparent type now only returns the apparent type of the right-most spread member. * Update tests w/spread assignability+apparent type * Moved AMD/CJS/UMD transform to end * Spread no longer distributes intersections * Update spread w/intersection tests * Move System module transform to end. * Update baseline * Revert baseline change due to stale output * Resolve all-object intersections inside spreads This means that getSpreadType will return an object type, even when spreading two intersections, as long as those intersections contain nothing but object types themselves. * Update and improve spread intersection tests * Simplify expression in resolveObjectIntersection * Update baselines with new index signature rules * Move n-ary spread handling into separate function. To be moved to callers in the next step. * Move multiple-spread handling out of getSpreadType * Clean up and reorder getSpreadType body * Respond to PR comments * Error for call/construct signatures in spread type 1. Simplify the error reporting code to handle all kinds of signatures. 2. Remove index signature handling code when creating a spread type since it's an error anyway. * Update baselines with new spread type index errors * Explain writeSpreadType a little better * Add more commentary to getSpreadType * Initial implementation of 'keyof T' type operator * Introduce PropertyNameType * Move most of resolveModuleNameForLsHost to lsHost * Simplify isImplicitGlob test * Initial implementation of 'T[K]' property access types * add a fallback logic for older versions of node that don't support 'homedir' (microsoft#11845) * add a fallback logic for older versions of node that don't support 'homedir' * try os.homedir first * For JavaScript files, we report semantic errors for using TypeScript-only constructs from within a JavaScript file as syntactic errors. * Don't require `resolvedTsFileName` and `resolvedJsFileName`, just `resolvedFileName` and `extension`. Also, change search order to do all TS searching before searching for JS. * Fix microsoft#10108 (Completion suggestion for object literal with getter) (microsoft#11808) * Fix microsoft#10108 (Completion suggestion for object literal with getter) * completions for setter * Move helper functions to core (fix build) * Support parametric property access expressions + some renaming * rewrite void-returning statements in constructors that capture result of super call (microsoft#11868) * rewrite void-returning statements in constructors that capture result of super call * linter * only emit /// types reference for a symbol in d.ts file if all declarations of a symbol come from type reference directives (microsoft#11872) * only emit /// types reference for a symbol in d.ts file if all declarations of a symbol come from type reference directives * pass proper value for current directory when compiling .d.ts files * Fix bug: Return a resolution diagnostic for a `.jsx` import if `--allowJs` is turned off * Remove a comment about a parameter that no longer exists * Fix bug: We want to test for existence of the enum value, not whether it's non-zero * Fix: test for presence, not absence * Allow untyped imports * Simplify for loops in fourslash.ts * Rename to zipWith * Change diagnostic message * Make `extension` property of `ResolvedModule` optional; introduce `ResolvedModuleFull` interface for when the extension is provided. * Consider index signatures in type produced by 'keyof T' * Respond to PR comments * Refactor getIndexedAccessType to be reusable from checkIndexedAccess * Skip overloads with too-short function parameters If the parameter of an overload is a function and the argument is also a function, skip the overload if the parameter has fewer arguments than the argument does. That overload cannot possibly apply, and should not participate in, for example, contextual typing. Example: ```ts interface I { (a: number): void; (b: string, c): void; } declare function f(i: I): void; f((x, y) => {}); ``` This code now skips the first overload instead of considering. This was a longstanding bug but was only uncovered now that more functions expressions are context sensitive. * Test skip overloads w/too-short function params 1. Update changed baseline. 2. Add a new test with baseline. * Minor style improvements * Ignore optionality when skipping overloads * Revert "Merge pull request microsoft#11354 from Microsoft/map4" This reverts commit adfdae0, reversing changes made to aad663c. * Rename Experimental transform to ESNext 1. Spread/rest are no longer experimental. 2. We need a place to put stage 3 ES features. * Changes from CR feedback * disable CoS for inferred projects (microsoft#11909) * Updating test due to CR changes. The order of the diagnostic messages has changed due to concatenation changes * Do not use contextual signatures with too few parameters * isAritySmaller runs later: getNonGenericSignature * Rename TransformFlags.Experimental -> ESNext * enable non-ts extensions in inferred projects by default * update CFG to properly handle do statements * do not inline async IIFEs in control flow graph * Minor fixes * cache type for empty type literal (microsoft#11934) cache type for empty type literal * Improved error messages for invalid assignments to identifiers * Accept new baselines * Improved error messages for invalid assignments to properties * Accept new baselines * Improve more error messages * Accept new baselines * Fix realPathMap in test harness: Must be used in `directoryExists` * Add helper function * Update generated files (microsoft#11963) * Move eitherIsNotLiteral check into switch and === checks This improves error messages * Forbid augmentation of untyped module (microsoft#11962) * Forbid augmentation of untyped module * Just use `undefined` for untyped modules * Unify checking of indexed access expressions and indexed access types * Accept new baselines * Accept additional baselines * Make `cachingInServerLSHost` tests work with `runtests-browser` * Get literal type only once * Update baselines * Add missed test update * Improve unification by moving more logic to getIndexedAccessType * Add test cases to report errors for decorators in js file * Report all the js file errors and skip only the nodes that are not allowed in js Fixes microsoft#11800 * Fix 'keyof any' to produce 'string | number' * Fix microsoft#11396: Make error message referene `Promise` explicitly (microsoft#11982) * Simplify the checking for async function return type * Fix microsoft#11396: Make error message referene `Promise` explicitly * Minor fixes * Adding tests * Test case for property used in destructuring variable declaration * Mark property referenced in the destructuring as referenced Fixes microsoft#11324 * Spread types handle nested index [access] types Nested index [access] types are treated as assignable to themselves only, just like type parameters. * Test index [access] types inside spread types * module resolution: prefer locally defined ambient modules, reuse resolutions to ambient modules from the old program (microsoft#11999) module resolution: prefer locally defined ambient modules, reuse resolutions to ambient modules from the old program * Parse, bind and check rest elements * Downlevel emit of rest elements * Add rest tests * Update baselines * Remove spread types, leaving spread syntax/emit Spreads are still typed, but cannot be created from a non-object type. Tests still need to be updated. * Fix lint * Lock tslint version to 4.0.0-dev.0, because 4.0.0-dev.1 complains about unnecessary semicolons following properties * Remove spread type tests from spread tests * Spread handles index signatures from singleton spreads I broke it when simplifying the logic earlier. * Correct assignability for keyof types and type parameters * Update tests * Accept new baselines * Update objectRestAssignment test and baselines * Fix linting errors * Update objectRestAssignment test Missed previously, just got the baselines * Improve readability of ES next destructuring emit * Ensure transformFlags are correct before visiting a node. * Port microsoft#12027, microsoft#11980 and microsoft#11932 to master (microsoft#12037) * add test for the fix for overwrite emitting error * cr feedback * Address PR comments 1. Remove extra line in __rest shim. 2. Improve __rest vs __assign check for destructuring assignment. * Move convertForOf to factory for esnext and es2015 Saves a lot of duplicated code * Update improved baselines * Move transformFunctionBody to factory It is shared by es2015 and esNext transformers. This commit just adds a convertObjectRest flag to be passed on to flattenDestructuring functions, as well as adding necessary parameters to use the code outside a transformer. * Spread any types to any * add missing bind calls to properly set parent on token nodes (microsoft#12057) * Cache generic signature instantiations * Accept new baselines * Properly instantiate aliasTypeArguments * Add regression test * Revert incorrect logic from microsoft#11392 * Accept new baselines * Rename SpreadElementExpression -> SpreadAssignment and SpreadExpression (formerly SpreadElementExpression) -> SpreadElement * Add SpreadAssignment to visitors 1. visitNode 2. reduceNode 3. emit This fixes an emit bug for setters. * Add --target esnext Currently, this disables the rest and spread transforms. This will change as proposals enter and leave stage 3. * Add --target esnext tests and update baselines * Revert unneeded change and comments per PR * Rename variable in checkSwitchStatement per PR * Do not emit __rest for --target esnext * Add `realpath` implementation for lshost * Create spread property types eagerly This avoids the need for a synthetic symbol and later code called from getTypeOfSymbol. * Set spread type symbols in checkObjectLiteral Instead of getSpreadType. Also clean up special-case handling inside getSpreadType to be more readable. * Ports microsoft#12051 and microsoft#12032 into master (microsoft#12090) * use local registry to check if typings package exist (microsoft#12014) use local registry to check if typings package exist * enable sending telemetry events to tsserver client (microsoft#12035) enable sending telemetry events * Address more PR comments * return empty file watcher in case if target directory does not exist (microsoft#12091) * return empty file watcher in case if target directory does not exist * linter * property handle missing config files in external projects (microsoft#12094) * Reuse subtree transform flags for incrementally parsed nodes (microsoft#12088) * Port fix for microsoft#12069 (microsoft#12095) * reduce set of files being watched, increase polling interval (microsoft#12054) (microsoft#12092) * Update authors for release-2.1 * Include declaration file emit * use createHash from ServerHost instead of explicit require (microsoft#12043) * use createHash from ServerHost instead of explicit require * added missing method in ServerHost stub * (signature help) type parameter lists are never variadic (microsoft#12112) * Handle abstract and const modifiers * Downlevel array destructuring to ES6 in object rest Previously array destructuring inside an object destructuring with an object rest would downlevel the array destructuring to ES5. This breaks if the code that targets ES2015 is using iterators instead of arrays since iterators don't support [0] or .slice that the ES5 emit uses. * Improve nested destructuring test for ESNext emit Now with object destructuring inside array destructuring inside object destructuring! Each with their own array/object rest! Also updates baselines. * Add support for taking in jsxFactory option and report errors for invalid combinations * Treat `| undefined` like optionality in spread type * Add strictNullChecks test for object spread * Verify that jsxFactory is either identifier or qualified name * Resolve first identifier of the jsxFactory as part of type check * When emitting use jsx factory entity expression if provided * Transpile unit test case * Enabled test case for source map * Add test cases for when jsxFactory cannot be resolved * Parse the jsxFactory again in the checker instead of using cached value in the program * Adds error message for incompatible assignment of identically named type Fixes issue microsoft#12050 * Updated condition for more readability * Report errors for import helpers missing __rest * Correctly check spread assignments in strict mode Previously it crashed in the binder. * Test error for import helpers with no __rest * synthesize complete import declaration for tslib (microsoft#12151) * Add ES2017 string padding (microsoft#12152) * add es2017.string.d.ts for String.prototype.{padStart,padEnd} * append es2017.string.d.ts into es2017.d.ts * add es2017.string into commandLineParser * append es2017.string into error message for unit tests of commandLineParser * append es2017.string into Gulpfile * append es2017.string into Jakefile * Exclude js files in non-configured projects compile-on-save emitting (microsoft#12118) * Exclude js files in non-configured projects CoS emitting * remove unnecessary method * Merge release-2.1 into master (microsoft#12157) * Update LKG * Update version * Update LKG * Skip overloads with too-short function parameters If the parameter of an overload is a function and the argument is also a function, skip the overload if the parameter has fewer arguments than the argument does. That overload cannot possibly apply, and should not participate in, for example, contextual typing. Example: ```ts interface I { (a: number): void; (b: string, c): void; } declare function f(i: I): void; f((x, y) => {}); ``` This code now skips the first overload instead of considering. This was a longstanding bug but was only uncovered now that more functions expressions are context sensitive. * Test skip overloads w/too-short function params 1. Update changed baseline. 2. Add a new test with baseline. * Minor style improvements * Ignore optionality when skipping overloads * Do not use contextual signatures with too few parameters * isAritySmaller runs later: getNonGenericSignature * rewrite void-returning statements in constructors that capture result of super call (microsoft#11868) * rewrite void-returning statements in constructors that capture result of super call * linter * Update LKG * Fix emit inferred type which is a generic type-alias both fully and partially fill type parameters * Add tests and baselines * Skip trying to use alias if there is target type * Update baselines * Add diagnostics to remind adding tsconfig file for certain external project (microsoft#11932) * Add diagnostics for certain external project * Show tsconfig suggestion * fix lint error * Address pr * fix comment * Update error message * Flag for not overwrite js files by default without generating errors (microsoft#11980) * WIP * Properly naming things * refactor * apply the option to all files and check out options * Fix typo * Update LKG * lockLinter * use local registry to check if typings package exist (microsoft#12014) (microsoft#12032) use local registry to check if typings package exist * Add test for microsoft#11980 (microsoft#12027) * add test for the fix for overwrite emitting error * cr feedback * enable sending telemetry events to tsserver client (microsoft#12034) (microsoft#12051) enable sending telemetry events * Update LKG * Reuse subtree transform flags for incrementally parsed nodes (microsoft#12088) * Update LKG * Update version * Update LKG * Do not emit "use strict" when targeting es6 or higher or module kind is es2015 and the file is external module * Add tests and baselines * [Release 2.1] fix11754 global augmentation (microsoft#12133) * Exclude global augmentation from module resolution logic * Address PR: check using string literal instead of NodeFlags.globalAugmentation * Remove comment
1 parent 15dadc7 commit 245a998

861 files changed

Lines changed: 21320 additions & 6963 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.mailmap

Lines changed: 36 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,38 @@
11

2-
Alexander <alexander@kuvaev.me># Alexander Kuvaev
32
AbubakerB <abubaker_bashir@hotmail.com> # Abubaker Bashir
3+
Alexander <alexander@kuvaev.me># Alexander Kuvaev
44
Adam Freidin <adam.freidin@gmail.com> Adam Freidin <afreidin@adobe.com>
55
Adi Dahiya <adahiya@palantir.com> Adi Dahiya <adi.dahiya14@gmail.com>
66
Ahmad Farid <ahfarid@microsoft.com> ahmad-farid <ahfarid@microsoft.com>
7+
Alexander Rusakov <a_s_rusakov@mail.ru>
78
Alex Eagle <alexeagle@google.com>
9+
Anatoly Ressin <anatoly.ressin@icloud.com>
810
Anders Hejlsberg <andersh@microsoft.com> unknown <andersh@AndersX1.NOE.Nokia.com> unknown <andersh@andersh-yoga.redmond.corp.microsoft.com>
11+
Andrej Baran <andrej.baran@gmail.com>
912
Andrew Z Allen <me@andrewzallen.com>
1013
Andy Hanson <anhans@microsoft.com> Andy <anhans@microsoft.com>
1114
Anil Anar <anilanar@hotmail.com>
1215
Anton Tolmachev <myste@mail.ru>
1316
Arnavion <arnavion@gmail.com> # Arnav Singh
14-
Arthur Ozga <aozgaa@umich.edu> Arthur Ozga <t-arthoz@microsoft.com>
17+
Arthur Ozga <aozgaa@umich.edu> Arthur Ozga <t-arthoz@microsoft.com> Arthur Ozga <aozgaa-ms@outlook.com> Arthur Ozga <aozgaa@users.noreply.github.com> Arthur Ozga <arozga@microsoft.com>
1518
Asad Saeeduddin <masaeedu@gmail.com>
1619
Schmavery <avery.schmavery@gmail.com> # Avery Morin
1720
Basarat Ali Syed <basaratali@gmail.com> Basarat Syed <basaratali@gmail.com> basarat <basaratali@gmail.com>
1821
Bill Ticehurst <billti@hotmail.com> Bill Ticehurst <billti@microsoft.com>
1922
Ben Duffield <jebavarde@gmail.com>
23+
Ben Mosher <me@benmosher.com>
2024
Blake Embrey <hello@blakeembrey.com>
2125
Bowden Kelly <wilkelly@microsoft.com>
2226
Brett Mayen <bmayen@midnightsnacks.net>
2327
Bryan Forbes <bryan@reigndropsfall.net>
2428
Caitlin Potter <caitpotter88@gmail.com>
2529
ChrisBubernak <chris.bubernak@gmail.com> unknown <chrbub@chrbub1.redmond.corp.microsoft.com> # Chris Bubernak
30+
Christophe Vidal <kriss@krizalys.com>
2631
Chuck Jazdzewski <chuckj@google.com>
2732
Colby Russell <mr@colbyrussell.com>
2833
Colin Snover <github.com@zetafleet.com>
2934
Cyrus Najmabadi <cyrusn@microsoft.com> CyrusNajmabadi <cyrusn@microsoft.com> unknown <cyrusn@cylap.ntdev.corp.microsoft.com>
35+
Dafrok <o.o@mug.dog> # Dafrok Zhang
3036
Dan Corder <dev@dancorder.com>
3137
Dan Quirk <danquirk@microsoft.com> Dan Quirk <danquirk@users.noreply.github.com> nknown <danquirk@DANQUIRK1.redmond.corp.microsoft.com>
3238
Daniel Rosenwasser <drosen@microsoft.com> Daniel Rosenwasser <DanielRosenwasser@users.noreply.github.com> Daniel Rosenwasser <DanielRosenwasser@gmail.com> Daniel Rosenwasser <Daniel.Rosenwasser@microsoft.com> Daniel Rosenwasser <DanielRosenwasser@microsoft.com>
@@ -36,17 +42,22 @@ Denis Nedelyaev <denvned@gmail.com>
3642
Dick van den Brink <d_vandenbrink@outlook.com> unknown <d_vandenbrink@outlook.com> unknown <d_vandenbrink@live.com>
3743
Dirk Baeumer <dirkb@microsoft.com> Dirk Bäumer <dirkb@microsoft.com> # Dirk Bäumer
3844
Dirk Holtwick <dirk.holtwick@gmail.com>
45+
Dom Chen <domchen@users.noreply.github.com>
3946
Doug Ilijev <dilijev@users.noreply.github.com>
4047
Erik Edrosa <erik.edrosa@gmail.com>
48+
erictsangx <erictsangx@gmail.com> # Eric Tsang
4149
Ethan Rubio <ethanrubio@users.noreply.github.com>
4250
Evan Martin <martine@danga.com>
4351
Evan Sebastian <evanlhoini@gmail.com>
4452
Eyas <eyas.sharaiha@gmail.com> # Eyas Sharaiha
53+
Fabian Cook <faybecook@gmail.com>
4554
falsandtru <falsandtru@users.noreply.github.com> # @falsandtru
4655
Frank Wallis <fwallis@outlook.com>
47-
František Žiačik <fziacik@gratex.com> František Žiačik <ziacik@gmail.com>
56+
František Žiacik <fziacik@gratex.com> František Žiacik <ziacik@gmail.com>
57+
Gabe Moothart <gmoothart@gmail.com>
4858
Gabriel Isenberg <gisenberg@gmail.com>
4959
Gilad Peleg <giladp007@gmail.com>
60+
Godfrey Chan <godfreykfc@gmail.com>
5061
Graeme Wicksted <graeme.wicksted@gmail.com>
5162
Guillaume Salles <guillaume.salles@me.com>
5263
Guy Bedford <guybedford@gmail.com> guybedford <guybedford@gmail.com>
@@ -55,6 +66,7 @@ Iain Monro <iain.monro@softwire.com>
5566
Ingvar Stepanyan <me@rreverser.com>
5667
impinball <impinball@gmail.com> # Isiah Meadows
5768
Ivo Gabe de Wolff <ivogabe@ivogabe.nl>
69+
Jakub Młokosiewicz <hckr@users.noreply.github.com>
5870
James Whitney <james@whitney.io>
5971
Jason Freeman <jfreeman@microsoft.com> Jason Freeman <JsonFreeman@users.noreply.github.com>
6072
Jason Killian <jkillian@palantir.com>
@@ -69,11 +81,14 @@ Jonathan Park <jpark@daptiv.com>
6981
Jonathan Turner <jont@microsoft.com> Jonathan Turner <probata@hotmail.com>
7082
Jonathan Toland <toland@dnalot.com>
7183
Jesse Schalken <me@jesseschalken.com>
84+
Josh Abernathy <joshaber@gmail.com> joshaber <joshaber@gmail.com>
7285
Josh Kalderimis <josh.kalderimis@gmail.com>
7386
Josh Soref <jsoref@users.noreply.github.com>
7487
Juan Luis Boya García <ntrrgc@gmail.com>
7588
Julian Williams <julianjw92@gmail.com>
76-
Herrington Darkholme <nonamesheep1@gmail.com>
89+
Justin Bay <justin.bay@outlook.com>
90+
Justin Johansson <thebabellion@gmail.com>
91+
Herrington Darkholme <nonamesheep1@gmail.com> (´·?·`) <HerringtonDarkholme@users.noreply.github.com> # Herrington Darkholme
7792
Kagami Sascha Rosylight <saschanaz@outlook.com> SaschaNaz <saschanaz@outlook.com>
7893
Kanchalai Tanglertsampan <yuisu@microsoft.com> Yui <yuit@users.noreply.github.com>
7994
Kanchalai Tanglertsampan <yuisu@microsoft.com> Yui T <yuisu@microsoft.com>
@@ -82,23 +97,29 @@ Kanchalai Tanglertsampan <yuisu@microsoft.com> Yui <yuisu@microsoft.com>
8297
Kanchalai Tanglertsampan <yuisu@microsoft.com> yui T <yuisu@microsoft.com>
8398
Keith Mashinter <kmashint@yahoo.com> kmashint <kmashint@yahoo.com>
8499
Ken Howard <ken@simplicatedweb.com>
100+
Kevin Lang <klang2012@gmail.com>
85101
kimamula <kenji.imamula@gmail.com> # Kenji Imamula
86102
Kyle Kelley <rgbkrk@gmail.com>
87103
Lorant Pinter <lorant.pinter@prezi.com>
88104
Lucien Greathouse <me@lpghatguy.com>
105+
Lukas Elmer <lukas.elmer@gmail.com> Lukas Elmer <lukas.elmer@renuo.ch>
89106
Martin Vseticka <vseticka.martin@gmail.com> Martin Všeticka <vseticka.martin@gmail.com> MartyIX <vseticka.martin@gmail.com>
107+
gcnew <gcnew@abv.bg> # Marin Marinov
90108
vvakame <vvakame+dev@gmail.com> # Masahiro Wakame
91109
Matt McCutchen <rmccutch@mit.edu>
92110
Max Deepfield <maxdeepfield@absolutefreakout.com>
93111
Micah Zoltu <micah@zoltu.net>
112+
Michael <maykelchiche@gmail.com>
94113
Mohamed Hegazy <mhegazy@microsoft.com>
95114
Nathan Shively-Sanders <nathansa@microsoft.com>
96115
Nathan Yee <ny.nathan.yee@gmail.com>
97116
Nima Zahedi <nima.zahedee@gmail.com>
117+
Noah Chen <nchen@palantir.com>
98118
Noj Vek <nojvek@gmail.com>
99119
mihailik <mihailik@gmail.com> # Oleg Mihailik
100120
Oleksandr Chekhovskyi <oleksandr.chekhovskyi@hansoft.com>
101121
Paul van Brenk <paul.van.brenk@microsoft.com> Paul van Brenk <paul.van.brenk@outlook.com> unknown <paul.van.brenk@microsoft.com> unknown <paul.van.brenk@microsoft.com> unknown <pvanbren@pvbvsproai.redmond.corp.microsoft.com>
122+
Omer Sheikh <ojsheikh@gmail.com>
102123
Oskar Segersva¨rd <oskar.segersvard@widespace.com>
103124
pcan <piero.cangianiello@gmail.com> # Piero Cangianiello
104125
pcbro <2bux89+dk3zspjmuh16o@sharklasers.com> # @pcbro
@@ -109,21 +130,26 @@ progre <djyayutto@gmail.com> # @progre
109130
Prayag Verma <prayag.verma@gmail.com>
110131
Punya Biswal <pbiswal@palantir.com>
111132
Rado Kirov <radokirov@google.com>
112-
Ron Buckton <rbuckton@microsoft.com> Ron Buckton <ron.buckton@microsoft.com>
133+
Ron Buckton <rbuckton@microsoft.com> Ron Buckton <ron.buckton@microsoft.com> rbuckton <rbuckton@chronicles.org>
134+
Rostislav Galimsky <rostgal@gmail.com>
113135
Richard Knoll <riknoll@users.noreply.github.com> Richard Knoll <riknoll@microsoft.com>
114136
Rowan Wyborn <rwyborn@internode.on.net>
115137
Ryan Cavanaugh <RyanCavanaugh@users.noreply.github.com> Ryan Cavanaugh <ryan.cavanaugh@microsoft.com> Ryan Cavanaugh <ryanca@microsoft.com>
116138
Ryohei Ikegami <iofg2100@gmail.com>
117139
Sarangan Rajamanickam <sarajama@microsoft.com>
118140
Sébastien Arod <sebastien.arod@gmail.com>
141+
Sergey Shandar <sergey-shandar@users.noreply.github.com>
119142
Sheetal Nandi <shkamat@microsoft.com>
120143
Shengping Zhong <zhongsp@users.noreply.github.com>
121144
shyyko.serhiy@gmail.com <shyyko.serhiy@gmail.com> # Shyyko Serhiy
145+
Sam El-Husseini <samelh@microsoft.com>
122146
Simon Hürlimann <simon.huerlimann@cyt.ch>
147+
Slawomir Sadziak <slsadzia@microsoft.com>
123148
Solal Pirelli <solal.pirelli@gmail.com>
124149
Stan Thomas <stmsdn@norvil.net>
125150
Stanislav Sysoev <d4rkr00t@gmail.com>
126151
Steve Lucco <steveluc@users.noreply.github.com> steveluc <steveluc@microsoft.com>
152+
Sudheesh Singanamalla <sudheesh1995@outlook.com>
127153
Tarik <tarik@pushmote.com> # Tarik Ozket
128154
Tetsuharu OHZEKI <saneyuki.snyk@gmail.com> # Tetsuharu Ohzeki
129155
Tien Nguyen <tihoanh@microsoft.com> tien <hoanhtien@users.noreply.github.com> unknown <tihoanh@microsoft.com> #Tien Hoanhtien
@@ -133,14 +159,17 @@ Tingan Ho <tingan87@gmail.com>
133159
togru <v3nomzxgt8@gmail.com> # togru
134160
Tomas Grubliauskas <tgrubliauskas@gmail.com>
135161
ToddThomson <achilles@telus.net> # Todd Thomson
162+
Torben Fitschen <torben.fitschen@mayflower.de>
136163
TruongSinh Tran-Nguyen <i@truongsinh.pro>
137164
vilicvane <i@vilic.info> # Vilic Vane
138165
Vladimir Matveev <vladima@microsoft.com> vladima <vladima@microsoft.com> v2m <desco.by@gmail.com>
139166
Wesley Wigham <t-weswig@microsoft.com> Wesley Wigham <wwigham@gmail.com>
140167
York Yao <plantain-00@users.noreply.github.com> york yao <yaoao12306@outlook.com> yaoyao <yaoyao12306@163.com>
141168
Yuichi Nukiyama <oscar.wilde84@hotmail.co.jp> YuichiNukiyama <oscar.wilde84@hotmail.co.jp>
142169
Zev Spitz <shivisi@etrog.net.il>
143-
Zhengbo Li <zhengbli@microsoft.com> zhengbli <zhengbli@microsoft.com> Zhengbo Li <Zhengbo Li> Zhengbo Li <zhengbli@mirosoft.com> tinza123 <li.zhengbo@outlook.com> unknown <zhengbli@zhengblit430.redmond.corp.microsoft.com> Zhengbo Li <Zhengbo Li>
170+
Zhengbo Li <zhengbli@microsoft.com> zhengbli <zhengbli@microsoft.com> Zhengbo Li <Zhengbo Li> Zhengbo Li <zhengbli@mirosoft.com> tinza123 <li.zhengbo@outlook.com> unknown <zhengbli@zhengblit430.redmond.corp.microsoft.com> Zhengbo Li <Zhengbo Li> zhengbli <zhengli@microsoft.com>
144171
zhongsp <patrick.zhongsp@gmail.com> # Patrick Zhong
145172
T18970237136 <T18970237136@users.noreply.github.com> # @T18970237136
146-
JBerger <JBerger@melco.com>
173+
JBerger <JBerger@melco.com>
174+
bootstraponline <code@bootstraponline.com> # @bootstraponline
175+
yortus <yortus@gmail.com> # @yortus

AUTHORS.md

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@ TypeScript is authored by:
55
* Ahmad Farid
66
* Alex Eagle
77
* Alexander Kuvaev
8+
* Alexander Rusakov
9+
* Anatoly Ressin
810
* Anders Hejlsberg
11+
* Andrej Baran
912
* Andrew Z Allen
1013
* Andy Hanson
1114
* Anil Anar
@@ -16,17 +19,21 @@ TypeScript is authored by:
1619
* Avery Morin
1720
* Basarat Ali Syed
1821
* Ben Duffield
22+
* Ben Mosher
1923
* Bill Ticehurst
2024
* Blake Embrey
25+
* @bootstraponline
2126
* Bowden Kelly
2227
* Brett Mayen
2328
* Bryan Forbes
2429
* Caitlin Potter
2530
* Chris Bubernak
31+
* Christophe Vidal
2632
* Chuck Jazdzewski
2733
* Colby Russell
2834
* Colin Snover
2935
* Cyrus Najmabadi
36+
* Dafrok Zhang
3037
* Dan Corder
3138
* Dan Quirk
3239
* Daniel Rosenwasser
@@ -36,17 +43,22 @@ TypeScript is authored by:
3643
* Dick van den Brink
3744
* Dirk Bäumer
3845
* Dirk Holtwick
46+
* Dom Chen
3947
* Doug Ilijev
48+
* Eric Tsang
4049
* Erik Edrosa
4150
* Ethan Rubio
4251
* Evan Martin
4352
* Evan Sebastian
4453
* Eyas Sharaiha
54+
* Fabian Cook
4555
* @falsandtru
4656
* Frank Wallis
47-
* František Žiačik
57+
* František Žiacik
58+
* Gabe Moothart
4859
* Gabriel Isenberg
4960
* Gilad Peleg
61+
* Godfrey Chan
5062
* Graeme Wicksted
5163
* Guillaume Salles
5264
* Guy Bedford
@@ -56,6 +68,7 @@ TypeScript is authored by:
5668
* Ingvar Stepanyan
5769
* Isiah Meadows
5870
* Ivo Gabe de Wolff
71+
* Jakub Młokosiewicz
5972
* James Whitney
6073
* Jason Freeman
6174
* Jason Killian
@@ -71,30 +84,39 @@ TypeScript is authored by:
7184
* Jonathan Park
7285
* Jonathan Toland
7386
* Jonathan Turner
87+
* Josh Abernathy
7488
* Josh Kalderimis
7589
* Josh Soref
7690
* Juan Luis Boya García
7791
* Julian Williams
92+
* Justin Bay
93+
* Justin Johansson
7894
* Kagami Sascha Rosylight
7995
* Kanchalai Tanglertsampan
8096
* Keith Mashinter
8197
* Ken Howard
8298
* Kenji Imamula
99+
* Kevin Lang
83100
* Kyle Kelley
84101
* Lorant Pinter
85102
* Lucien Greathouse
103+
* Lukas Elmer
104+
* Marin Marinov
86105
* Martin Vseticka
87106
* Masahiro Wakame
88107
* Matt McCutchen
89108
* Max Deepfield
90109
* Micah Zoltu
110+
* Michael
91111
* Mohamed Hegazy
92112
* Nathan Shively-Sanders
93113
* Nathan Yee
94114
* Nima Zahedi
115+
* Noah Chen
95116
* Noj Vek
96117
* Oleg Mihailik
97118
* Oleksandr Chekhovskyi
119+
* Omer Sheikh
98120
* Oskar Segersva¨rd
99121
* Patrick Zhong
100122
* Paul van Brenk
@@ -109,33 +131,41 @@ TypeScript is authored by:
109131
* Rado Kirov
110132
* Richard Knoll
111133
* Ron Buckton
134+
* Rostislav Galimsky
112135
* Rowan Wyborn
113136
* Ryan Cavanaugh
114137
* Ryohei Ikegami
138+
* Sam El-Husseini
115139
* Sarangan Rajamanickam
140+
* Sergey Shandar
116141
* Sheetal Nandi
117142
* Shengping Zhong
118143
* Shyyko Serhiy
119144
* Simon Hürlimann
145+
* Slawomir Sadziak
120146
* Solal Pirelli
121147
* Stan Thomas
122148
* Stanislav Sysoev
123149
* Steve Lucco
150+
* Sudheesh Singanamalla
124151
* Sébastien Arod
125152
* @T18970237136
126153
* Tarik Ozket
154+
* Tetsuharu Ohzeki
127155
* Tien Hoanhtien
128156
* Tim Perry
129157
* Tim Viiding-Spader
130158
* Tingan Ho
131159
* Todd Thomson
132160
* togru
133161
* Tomas Grubliauskas
162+
* Torben Fitschen
134163
* TruongSinh Tran-Nguyen
135164
* Vilic Vane
136165
* Vladimir Matveev
137166
* Wesley Wigham
138167
* York Yao
168+
* @yortus
139169
* Yuichi Nukiyama
140170
* Zev Spitz
141171
* Zhengbo Li

Gulpfile.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,8 @@ const es2016LibrarySourceMap = es2016LibrarySource.map(function(source) {
128128

129129
const es2017LibrarySource = [
130130
"es2017.object.d.ts",
131-
"es2017.sharedmemory.d.ts"
131+
"es2017.sharedmemory.d.ts",
132+
"es2017.string.d.ts",
132133
];
133134

134135
const es2017LibrarySourceMap = es2017LibrarySource.map(function(source) {

Jakefile.js

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -70,15 +70,16 @@ var compilerSources = [
7070
"visitor.ts",
7171
"transformers/destructuring.ts",
7272
"transformers/ts.ts",
73-
"transformers/module/es2015.ts",
74-
"transformers/module/system.ts",
75-
"transformers/module/module.ts",
7673
"transformers/jsx.ts",
74+
"transformers/esnext.ts",
7775
"transformers/es2017.ts",
7876
"transformers/es2016.ts",
7977
"transformers/es2015.ts",
8078
"transformers/generators.ts",
8179
"transformers/es5.ts",
80+
"transformers/module/es2015.ts",
81+
"transformers/module/system.ts",
82+
"transformers/module/module.ts",
8283
"transformer.ts",
8384
"sourcemap.ts",
8485
"comments.ts",
@@ -106,15 +107,16 @@ var servicesSources = [
106107
"visitor.ts",
107108
"transformers/destructuring.ts",
108109
"transformers/ts.ts",
109-
"transformers/module/es2015.ts",
110-
"transformers/module/system.ts",
111-
"transformers/module/module.ts",
112110
"transformers/jsx.ts",
111+
"transformers/esnext.ts",
113112
"transformers/es2017.ts",
114113
"transformers/es2016.ts",
115114
"transformers/es2015.ts",
116115
"transformers/generators.ts",
117116
"transformers/es5.ts",
117+
"transformers/module/es2015.ts",
118+
"transformers/module/system.ts",
119+
"transformers/module/module.ts",
118120
"transformer.ts",
119121
"sourcemap.ts",
120122
"comments.ts",
@@ -301,7 +303,8 @@ var es2016LibrarySourceMap = es2016LibrarySource.map(function (source) {
301303

302304
var es2017LibrarySource = [
303305
"es2017.object.d.ts",
304-
"es2017.sharedmemory.d.ts"
306+
"es2017.sharedmemory.d.ts",
307+
"es2017.string.d.ts",
305308
];
306309

307310
var es2017LibrarySourceMap = es2017LibrarySource.map(function (source) {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
"ts-node": "latest",
7878
"tsd": "latest",
7979
"tslint": "4.0.0-dev.0",
80-
"typescript": "2.1.0-dev.20161101"
80+
"typescript": "^2.1"
8181
},
8282
"scripts": {
8383
"pretest": "jake tests",

0 commit comments

Comments
 (0)