tsrc 2.1.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (57) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +21 -0
  3. data/Gemfile +7 -0
  4. data/LICENSE +55 -0
  5. data/README.md +33 -0
  6. data/Rakefile +16 -0
  7. data/lib/tsrc.rb +57 -0
  8. data/lib/tsrc/support/typescript/.mailmap +216 -0
  9. data/lib/tsrc/support/typescript/.npmignore +19 -0
  10. data/lib/tsrc/support/typescript/AUTHORS.md +204 -0
  11. data/lib/tsrc/support/typescript/CONTRIBUTING.md +185 -0
  12. data/lib/tsrc/support/typescript/CopyrightNotice.txt +15 -0
  13. data/lib/tsrc/support/typescript/LICENSE.txt +55 -0
  14. data/lib/tsrc/support/typescript/README.md +98 -0
  15. data/lib/tsrc/support/typescript/ThirdPartyNoticeText.txt +35 -0
  16. data/lib/tsrc/support/typescript/bin/tsc +2 -0
  17. data/lib/tsrc/support/typescript/bin/tsserver +2 -0
  18. data/lib/tsrc/support/typescript/lib/README.md +5 -0
  19. data/lib/tsrc/support/typescript/lib/cancellationToken.js +41 -0
  20. data/lib/tsrc/support/typescript/lib/lib.d.ts +18215 -0
  21. data/lib/tsrc/support/typescript/lib/lib.dom.d.ts +13738 -0
  22. data/lib/tsrc/support/typescript/lib/lib.dom.iterable.d.ts +33 -0
  23. data/lib/tsrc/support/typescript/lib/lib.es2015.collection.d.ts +92 -0
  24. data/lib/tsrc/support/typescript/lib/lib.es2015.core.d.ts +544 -0
  25. data/lib/tsrc/support/typescript/lib/lib.es2015.d.ts +30 -0
  26. data/lib/tsrc/support/typescript/lib/lib.es2015.generator.d.ts +32 -0
  27. data/lib/tsrc/support/typescript/lib/lib.es2015.iterable.d.ts +465 -0
  28. data/lib/tsrc/support/typescript/lib/lib.es2015.promise.d.ts +274 -0
  29. data/lib/tsrc/support/typescript/lib/lib.es2015.proxy.d.ts +42 -0
  30. data/lib/tsrc/support/typescript/lib/lib.es2015.reflect.d.ts +35 -0
  31. data/lib/tsrc/support/typescript/lib/lib.es2015.symbol.d.ts +56 -0
  32. data/lib/tsrc/support/typescript/lib/lib.es2015.symbol.wellknown.d.ts +347 -0
  33. data/lib/tsrc/support/typescript/lib/lib.es2016.array.include.d.ts +118 -0
  34. data/lib/tsrc/support/typescript/lib/lib.es2016.d.ts +22 -0
  35. data/lib/tsrc/support/typescript/lib/lib.es2017.d.ts +24 -0
  36. data/lib/tsrc/support/typescript/lib/lib.es2017.object.d.ts +45 -0
  37. data/lib/tsrc/support/typescript/lib/lib.es2017.sharedmemory.d.ts +47 -0
  38. data/lib/tsrc/support/typescript/lib/lib.es2017.string.d.ts +47 -0
  39. data/lib/tsrc/support/typescript/lib/lib.es5.d.ts +4195 -0
  40. data/lib/tsrc/support/typescript/lib/lib.es6.d.ts +19950 -0
  41. data/lib/tsrc/support/typescript/lib/lib.scripthost.d.ts +311 -0
  42. data/lib/tsrc/support/typescript/lib/lib.webworker.d.ts +1274 -0
  43. data/lib/tsrc/support/typescript/lib/protocol.d.ts +1900 -0
  44. data/lib/tsrc/support/typescript/lib/tsc.js +52470 -0
  45. data/lib/tsrc/support/typescript/lib/tsserver.js +70720 -0
  46. data/lib/tsrc/support/typescript/lib/tsserverlibrary.d.ts +11939 -0
  47. data/lib/tsrc/support/typescript/lib/tsserverlibrary.js +70256 -0
  48. data/lib/tsrc/support/typescript/lib/typescript.d.ts +3166 -0
  49. data/lib/tsrc/support/typescript/lib/typescript.js +81536 -0
  50. data/lib/tsrc/support/typescript/lib/typescriptServices.d.ts +3164 -0
  51. data/lib/tsrc/support/typescript/lib/typescriptServices.js +81536 -0
  52. data/lib/tsrc/support/typescript/lib/typingsInstaller.js +7314 -0
  53. data/lib/tsrc/support/typescript/package.json +129 -0
  54. data/lib/tsrc/support/typescript/test.config +1 -0
  55. data/lib/tsrc/version.rb +5 -0
  56. data/tsrc.gemspec +20 -0
  57. metadata +113 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: a565d24064d0ee7e0fe5493b79fe1334c89d34af
4
+ data.tar.gz: 2fe3f56ca6981626613ecd1e18b584b6a94f6fbf
5
+ SHA512:
6
+ metadata.gz: 0bf79e4543a4b302f4269b7d49a07598ca0fee8b03fe4cef9fea414c37020b450475f24f22a30f728df4899e14a5cf72651dfdcafd03f935bfdf642ed66287eb
7
+ data.tar.gz: dc02fe409ed54d710ca69c66d514afe2b70ece3d85a7646be276ac03e44d745ff465aa2dd4c3c7e74e8ee8300703e55ef4f380ac19624584ecafe1bd6721aa69
@@ -0,0 +1,21 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ .idea
19
+ .rvmrc
20
+
21
+ node_modules/
data/Gemfile ADDED
@@ -0,0 +1,7 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
4
+
5
+ group :test do
6
+ gem 'test-unit', '~> 3.0.0'
7
+ end
data/LICENSE ADDED
@@ -0,0 +1,55 @@
1
+ Apache License
2
+
3
+ Version 2.0, January 2004
4
+
5
+ http://www.apache.org/licenses/
6
+
7
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
8
+
9
+ 1. Definitions.
10
+
11
+ "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
16
+
17
+ "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
18
+
19
+ "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
20
+
21
+ "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
22
+
23
+ "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
24
+
25
+ "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
26
+
27
+ "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
28
+
29
+ "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
30
+
31
+ 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
32
+
33
+ 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
34
+
35
+ 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
36
+
37
+ You must give any other recipients of the Work or Derivative Works a copy of this License; and
38
+
39
+ You must cause any modified files to carry prominent notices stating that You changed the files; and
40
+
41
+ You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
42
+
43
+ If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
44
+
45
+ 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
46
+
47
+ 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
48
+
49
+ 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
50
+
51
+ 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
52
+
53
+ 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
54
+
55
+ END OF TERMS AND CONDITIONS
@@ -0,0 +1,33 @@
1
+ TypeScript source files in a gem.
2
+
3
+ ## Installation
4
+
5
+ Add this line to your application's `Gemfile`:
6
+
7
+ gem 'tsrc'
8
+
9
+ And then execute:
10
+
11
+ $ bundle
12
+
13
+ Or install it yourself as:
14
+
15
+ $ gem install tsrc
16
+
17
+ ## Usage
18
+
19
+ ```ruby
20
+ require 'tsrc'
21
+
22
+ p TypeScript::Src.tsc_path # => #<Pathname:/path/to/tsc>
23
+ p TypeScript::Src.js_path # => #<Pathname:/path/to/typescript.js>
24
+ p TypeScript::Src.version # => "1.4.1.3"
25
+ ```
26
+
27
+ ## Contributing
28
+
29
+ 1. Fork it
30
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
31
+ 3. Commit your changes (`git commit -am 'Added some feature'`)
32
+ 4. Push to the branch (`git push origin my-new-feature`)
33
+ 5. Create new Pull Request
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env rake
2
+ require 'bundler/gem_tasks'
3
+ require 'rake/testtask'
4
+
5
+ desc 'download the latest TypeScript source files'
6
+ task 'typescript:download' do
7
+ sh 'npm', 'install', 'typescript'
8
+ end
9
+
10
+ desc 'upgrade TypeScript source files'
11
+ task 'typescript:upgrade' => %w(typescript:download) do
12
+ dir = 'lib/tsrc/support'
13
+ rm_rf dir
14
+ mkdir_p dir
15
+ mv 'node_modules/typescript', "#{dir}/typescript"
16
+ end
@@ -0,0 +1,57 @@
1
+ require 'json'
2
+ require 'pathname'
3
+ require 'tsrc/version'
4
+
5
+ module TypeScript
6
+ module Src
7
+ class << self
8
+ # @return [Pathname]
9
+ def typescript_path
10
+ @typescript_path ||= ::Pathname.new(File.dirname(__FILE__)).join('tsrc/support/typescript')
11
+ end
12
+
13
+ # @return [Pathname]
14
+ def tsc_path
15
+ typescript_path.join('bin/tsc')
16
+ end
17
+
18
+ # @return [Pathname]
19
+ def js_path
20
+ bin_tsc = typescript_path.join('lib/tsc.js')
21
+ if ::File.exist?(bin_tsc)
22
+ bin_tsc
23
+ else
24
+ typescript_path.join('bin/tsc.js')
25
+ end
26
+ end
27
+
28
+ # @return [Pathname]
29
+ def package_json_path
30
+ typescript_path.join('package.json')
31
+ end
32
+
33
+ # @return [Pathname]
34
+ def license_path
35
+ typescript_path.join('LICENSE.txt')
36
+ end
37
+
38
+ ### contents
39
+
40
+ # @return [String]
41
+ def js_content
42
+ js_path.read
43
+ end
44
+
45
+ # @return [Hash]
46
+ def package_info
47
+ JSON.parse(package_json_path.read)
48
+ end
49
+
50
+ # @return [String]
51
+ def version
52
+ package_info['version']
53
+ end
54
+ end
55
+ end
56
+ end
57
+
@@ -0,0 +1,216 @@
1
+ 
2
+ AbubakerB <abubaker_bashir@hotmail.com> # Abubaker Bashir
3
+ Alexander <alexander@kuvaev.me># Alexander Kuvaev
4
+ Adam Freidin <adam.freidin@gmail.com> Adam Freidin <afreidin@adobe.com>
5
+ Adi Dahiya <adahiya@palantir.com> Adi Dahiya <adi.dahiya14@gmail.com>
6
+ Ahmad Farid <ahfarid@microsoft.com> ahmad-farid <ahfarid@microsoft.com>
7
+ Alexander Rusakov <a_s_rusakov@mail.ru>
8
+ Alex Eagle <alexeagle@google.com>
9
+ Anatoly Ressin <anatoly.ressin@icloud.com>
10
+ 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>
12
+ Andrew Z Allen <me@andrewzallen.com>
13
+ Andy Hanson <anhans@microsoft.com> Andy <anhans@microsoft.com>
14
+ Anil Anar <anilanar@hotmail.com>
15
+ Anton Tolmachev <myste@mail.ru>
16
+ Arnavion <arnavion@gmail.com> # Arnav Singh
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>
18
+ Asad Saeeduddin <masaeedu@gmail.com>
19
+ Schmavery <avery.schmavery@gmail.com> # Avery Morin
20
+ Basarat Ali Syed <basaratali@gmail.com> Basarat Syed <basaratali@gmail.com> basarat <basaratali@gmail.com>
21
+ Bill Ticehurst <billti@hotmail.com> Bill Ticehurst <billti@microsoft.com>
22
+ Ben Duffield <jebavarde@gmail.com>
23
+ Ben Mosher <me@benmosher.com>
24
+ Blake Embrey <hello@blakeembrey.com>
25
+ Bowden Kelly <wilkelly@microsoft.com>
26
+ Brett Mayen <bmayen@midnightsnacks.net>
27
+ Bryan Forbes <bryan@reigndropsfall.net>
28
+ Caitlin Potter <caitpotter88@gmail.com>
29
+ ChrisBubernak <chris.bubernak@gmail.com> unknown <chrbub@chrbub1.redmond.corp.microsoft.com> # Chris Bubernak
30
+ Christophe Vidal <kriss@krizalys.com>
31
+ Chuck Jazdzewski <chuckj@google.com>
32
+ Colby Russell <mr@colbyrussell.com>
33
+ Colin Snover <github.com@zetafleet.com>
34
+ Cyrus Najmabadi <cyrusn@microsoft.com> CyrusNajmabadi <cyrusn@microsoft.com> unknown <cyrusn@cylap.ntdev.corp.microsoft.com>
35
+ Dafrok <o.o@mug.dog> # Dafrok Zhang
36
+ Dan Corder <dev@dancorder.com>
37
+ Dan Quirk <danquirk@microsoft.com> Dan Quirk <danquirk@users.noreply.github.com> nknown <danquirk@DANQUIRK1.redmond.corp.microsoft.com>
38
+ 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>
39
+ David Li <jiawei.davidli@gmail.com>
40
+ David Souther <davidsouther@gmail.com>
41
+ Denis Nedelyaev <denvned@gmail.com>
42
+ Dick van den Brink <d_vandenbrink@outlook.com> unknown <d_vandenbrink@outlook.com> unknown <d_vandenbrink@live.com>
43
+ Dirk Baeumer <dirkb@microsoft.com> Dirk Bäumer <dirkb@microsoft.com> # Dirk Bäumer
44
+ Dirk Holtwick <dirk.holtwick@gmail.com>
45
+ Dom Chen <domchen@users.noreply.github.com>
46
+ Doug Ilijev <dilijev@users.noreply.github.com>
47
+ Erik Edrosa <erik.edrosa@gmail.com>
48
+ erictsangx <erictsangx@gmail.com> # Eric Tsang
49
+ Ethan Rubio <ethanrubio@users.noreply.github.com>
50
+ Evan Martin <martine@danga.com>
51
+ Evan Sebastian <evanlhoini@gmail.com>
52
+ Eyas <eyas.sharaiha@gmail.com> # Eyas Sharaiha
53
+ Fabian Cook <faybecook@gmail.com>
54
+ falsandtru <falsandtru@users.noreply.github.com> # @falsandtru
55
+ Frank Wallis <fwallis@outlook.com>
56
+ František Žiacik <fziacik@gratex.com> František Žiacik <ziacik@gmail.com>
57
+ Gabe Moothart <gmoothart@gmail.com>
58
+ Gabriel Isenberg <gisenberg@gmail.com>
59
+ Gilad Peleg <giladp007@gmail.com>
60
+ Godfrey Chan <godfreykfc@gmail.com>
61
+ Graeme Wicksted <graeme.wicksted@gmail.com>
62
+ Guillaume Salles <guillaume.salles@me.com>
63
+ Guy Bedford <guybedford@gmail.com> guybedford <guybedford@gmail.com>
64
+ Harald Niesche <harald@niesche.de>
65
+ Iain Monro <iain.monro@softwire.com>
66
+ Ingvar Stepanyan <me@rreverser.com>
67
+ impinball <impinball@gmail.com> # Isiah Meadows
68
+ Ivo Gabe de Wolff <ivogabe@ivogabe.nl>
69
+ Jakub Młokosiewicz <hckr@users.noreply.github.com>
70
+ James Whitney <james@whitney.io>
71
+ Jason Freeman <jfreeman@microsoft.com> Jason Freeman <JsonFreeman@users.noreply.github.com>
72
+ Jason Killian <jkillian@palantir.com>
73
+ Jason Ramsay <jasonra@microsoft.com> jramsay <jramsay@users.noreply.github.com>
74
+ Jed Mao <jed.hunsaker@gmail.com>
75
+ Jeffrey Morlan <jmmorlan@sonic.net>
76
+ tobisek <jiri@wix.com> # Jiri Tobisek
77
+ Johannes Rieken <jrieken@microsoft.com>
78
+ John Vilk <jvilk@cs.umass.edu>
79
+ jbondc <jbondc@gdesolutions.com> jbondc <jbondc@golnetwork.com> jbondc <jbondc@openmv.com> # Jonathan Bond-Caron
80
+ Jonathan Park <jpark@daptiv.com>
81
+ Jonathan Turner <jont@microsoft.com> Jonathan Turner <probata@hotmail.com>
82
+ Jonathan Toland <toland@dnalot.com>
83
+ Jesse Schalken <me@jesseschalken.com>
84
+ Josh Abernathy <joshaber@gmail.com> joshaber <joshaber@gmail.com>
85
+ Josh Kalderimis <josh.kalderimis@gmail.com>
86
+ Josh Soref <jsoref@users.noreply.github.com>
87
+ Juan Luis Boya García <ntrrgc@gmail.com>
88
+ Julian Williams <julianjw92@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
92
+ Kagami Sascha Rosylight <saschanaz@outlook.com> SaschaNaz <saschanaz@outlook.com>
93
+ Kanchalai Tanglertsampan <yuisu@microsoft.com> Yui <yuit@users.noreply.github.com>
94
+ Kanchalai Tanglertsampan <yuisu@microsoft.com> Yui T <yuisu@microsoft.com>
95
+ Kanchalai Tanglertsampan <yuisu@microsoft.com> Yui <yuit@users.noreply.github.com>
96
+ Kanchalai Tanglertsampan <yuisu@microsoft.com> Yui <yuisu@microsoft.com>
97
+ Kanchalai Tanglertsampan <yuisu@microsoft.com> yui T <yuisu@microsoft.com>
98
+ Keith Mashinter <kmashint@yahoo.com> kmashint <kmashint@yahoo.com>
99
+ Ken Howard <ken@simplicatedweb.com>
100
+ Kevin Lang <klang2012@gmail.com>
101
+ kimamula <kenji.imamula@gmail.com> # Kenji Imamula
102
+ Kyle Kelley <rgbkrk@gmail.com>
103
+ Lorant Pinter <lorant.pinter@prezi.com>
104
+ Lucien Greathouse <me@lpghatguy.com>
105
+ Lukas Elmer <lukas.elmer@gmail.com> Lukas Elmer <lukas.elmer@renuo.ch>
106
+ 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
108
+ vvakame <vvakame+dev@gmail.com> # Masahiro Wakame
109
+ Matt McCutchen <rmccutch@mit.edu>
110
+ Max Deepfield <maxdeepfield@absolutefreakout.com>
111
+ Micah Zoltu <micah@zoltu.net>
112
+ Michael <maykelchiche@gmail.com>
113
+ Mohamed Hegazy <mhegazy@microsoft.com>
114
+ Nathan Shively-Sanders <nathansa@microsoft.com>
115
+ Nathan Yee <ny.nathan.yee@gmail.com>
116
+ Nima Zahedi <nima.zahedee@gmail.com>
117
+ Noah Chen <nchen@palantir.com>
118
+ Noj Vek <nojvek@gmail.com>
119
+ mihailik <mihailik@gmail.com> # Oleg Mihailik
120
+ Oleksandr Chekhovskyi <oleksandr.chekhovskyi@hansoft.com>
121
+ 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>
123
+ Oskar Segersva¨rd <oskar.segersvard@widespace.com>
124
+ pcan <piero.cangianiello@gmail.com> # Piero Cangianiello
125
+ pcbro <2bux89+dk3zspjmuh16o@sharklasers.com> # @pcbro
126
+ Pedro Maltez <pedro@pedro.ac> # Pedro Maltez
127
+ piloopin <piloopin@gmail.com> # @piloopin
128
+ milkisevil <philip@milkisevil.com> # Philip Bulley
129
+ progre <djyayutto@gmail.com> # @progre
130
+ Prayag Verma <prayag.verma@gmail.com>
131
+ Punya Biswal <pbiswal@palantir.com>
132
+ Rado Kirov <radokirov@google.com>
133
+ Ron Buckton <rbuckton@microsoft.com> Ron Buckton <ron.buckton@microsoft.com> rbuckton <rbuckton@chronicles.org>
134
+ Rostislav Galimsky <rostgal@gmail.com>
135
+ Richard Knoll <riknoll@users.noreply.github.com> Richard Knoll <riknoll@microsoft.com>
136
+ Rowan Wyborn <rwyborn@internode.on.net>
137
+ Ryan Cavanaugh <RyanCavanaugh@users.noreply.github.com> Ryan Cavanaugh <ryan.cavanaugh@microsoft.com> Ryan Cavanaugh <ryanca@microsoft.com>
138
+ Ryohei Ikegami <iofg2100@gmail.com>
139
+ Sarangan Rajamanickam <sarajama@microsoft.com>
140
+ Sébastien Arod <sebastien.arod@gmail.com>
141
+ Sergey Shandar <sergey-shandar@users.noreply.github.com>
142
+ Sheetal Nandi <shkamat@microsoft.com>
143
+ Shengping Zhong <zhongsp@users.noreply.github.com>
144
+ shyyko.serhiy@gmail.com <shyyko.serhiy@gmail.com> # Shyyko Serhiy
145
+ Sam El-Husseini <samelh@microsoft.com>
146
+ Simon Hürlimann <simon.huerlimann@cyt.ch>
147
+ Slawomir Sadziak <slsadzia@microsoft.com>
148
+ Solal Pirelli <solal.pirelli@gmail.com>
149
+ Stan Thomas <stmsdn@norvil.net>
150
+ Stanislav Sysoev <d4rkr00t@gmail.com>
151
+ Steve Lucco <steveluc@users.noreply.github.com> steveluc <steveluc@microsoft.com>
152
+ Sudheesh Singanamalla <sudheesh1995@outlook.com>
153
+ Tarik <tarik@pushmote.com> # Tarik Ozket
154
+ Tetsuharu OHZEKI <saneyuki.snyk@gmail.com> # Tetsuharu Ohzeki
155
+ Tien Nguyen <tihoanh@microsoft.com> tien <hoanhtien@users.noreply.github.com> unknown <tihoanh@microsoft.com> #Tien Hoanhtien
156
+ Tim Perry <pimterry@gmail.com>
157
+ Tim Viiding-Spader <viispade@users.noreply.github.com>
158
+ Tingan Ho <tingan87@gmail.com>
159
+ togru <v3nomzxgt8@gmail.com> # togru
160
+ Tomas Grubliauskas <tgrubliauskas@gmail.com>
161
+ ToddThomson <achilles@telus.net> # Todd Thomson
162
+ Torben Fitschen <torben.fitschen@mayflower.de>
163
+ TruongSinh Tran-Nguyen <i@truongsinh.pro>
164
+ vilicvane <i@vilic.info> # Vilic Vane
165
+ Vladimir Matveev <vladima@microsoft.com> vladima <vladima@microsoft.com> v2m <desco.by@gmail.com>
166
+ Wesley Wigham <t-weswig@microsoft.com> Wesley Wigham <wwigham@gmail.com>
167
+ York Yao <plantain-00@users.noreply.github.com> york yao <yaoao12306@outlook.com> yaoyao <yaoyao12306@163.com>
168
+ Yuichi Nukiyama <oscar.wilde84@hotmail.co.jp> YuichiNukiyama <oscar.wilde84@hotmail.co.jp>
169
+ Zev Spitz <shivisi@etrog.net.il>
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>
171
+ zhongsp <patrick.zhongsp@gmail.com> # Patrick Zhong
172
+ T18970237136 <T18970237136@users.noreply.github.com> # @T18970237136
173
+ JBerger <JBerger@melco.com>
174
+ bootstraponline <code@bootstraponline.com> # @bootstraponline
175
+ yortus <yortus@gmail.com> # @yortus
176
+ András Parditka <andraaspar@gmail.com>
177
+ Anton Khlynovskiy <subzey@gmail.com>
178
+ Charly POLY <cpoly55@gmail.com>
179
+ Cotton Hou <himcotton@gmail.com>
180
+ Ethan Resnick <ethan.resnick@gmail.com>
181
+ Marius Schulz <marius.schulz@me.com>
182
+ Mattias Buelens <mattias.buelens@gmail.com>
183
+ Myles Megyesi <mylesmegyesi@users.noreply.github.com>
184
+ Tim Lancina <tim@ionic.io>
185
+ Aaron Holmes <aaron@aaronholmes.net> Aaron Holmes <aholmes@bltomato.com>
186
+ Akshar Patel <akshar.patel.47@gmail.com>
187
+ Ali Sabzevari <alisabzevari@gmail.com>
188
+ Aliaksandr Radzivanovich <aradzivanovich@gmail.com>
189
+ BuildTools <FranklinWhale@users.noreply.github.com> # Franklin Tse
190
+ ChogyDan <danielhollocher@gmail.com> # Daniel Hollocher
191
+ Daniel Rosenwasser <DanielRosenwasser@users.noreply.github.com> Daniel Rosenwasser <drosen@microsoft.com>
192
+ David Kmenta <david.kmenta@lmc.eu>
193
+ E020873 <nicolas.henry-partner@arcelormittal.com> # Nicolas Henry
194
+ Elisée Maurer <elisee@sparklinlabs.com>
195
+ Emilio García-Pumarino <emili.tfe@gmail.com> dashaus <emili.tfe@gmail.com>
196
+ Guilherme Oenning <me@goenning.net>
197
+ Herrington Darkholme <nonamesheep1@gmail.com>
198
+ Ivo Gabe de Wolff <ivogabe@ivogabe.nl>
199
+ Joey Wilson <joey.wilson.a@gmail.com>
200
+ Jonathon Smith <failing@crashdive.co.uk>
201
+ Juan Luis Boya García <ntrrgc@gmail.com>
202
+ Kagami Sascha Rosylight <saschanaz@outlook.com>
203
+ Lucien Greathouse <me@lpghatguy.com>
204
+ Martin Vseticka <vseticka.martin@gmail.com>
205
+ Mattias Buelens <mattias.buelens@opentelly.com>
206
+ Michael Bromley <michael@michaelbromley.co.uk>
207
+ Paul Jolly <paul@myitcv.org.uk>
208
+ Perry Jiang <jiangperry@gmail.com>
209
+ Peter Burns <rictic@google.com>
210
+ Robert Coie <rac@intrigue.com>
211
+ Thomas Loubiou <t.loubiou@systonic.fr>
212
+ Tim Perry <tim.perry@softwire.com>
213
+ Vidar Tonaas Fauske <vidartf@gmail.com>
214
+ Viktor Zozulyak <zozulyakviktor@gmail.com>
215
+ rix <rix@rixs-MacBook-Pro.local> # Richard Sentino
216
+ rohitverma007 <rohitverma@live.ca> # Rohit Verma
@@ -0,0 +1,19 @@
1
+ built
2
+ doc
3
+ Gulpfile.ts
4
+ internal
5
+ issue_template.md
6
+ jenkins.sh
7
+ lib/README.md
8
+ netci.groovy
9
+ pull_request_template.md
10
+ scripts
11
+ src
12
+ tests
13
+ tslint.json
14
+ Jakefile.js
15
+ .editorconfig
16
+ .gitattributes
17
+ .settings/
18
+ .travis.yml
19
+ .vscode/
@@ -0,0 +1,204 @@
1
+ TypeScript is authored by:
2
+ * Aaron Holmes
3
+ * Abubaker Bashir
4
+ * Adam Freidin
5
+ * Adi Dahiya
6
+ * Ahmad Farid
7
+ * Akshar Patel
8
+ * Alex Eagle
9
+ * Alexander Kuvaev
10
+ * Alexander Rusakov
11
+ * Ali Sabzevari
12
+ * Aliaksandr Radzivanovich
13
+ * Anatoly Ressin
14
+ * Anders Hejlsberg
15
+ * Andrej Baran
16
+ * Andrew Z Allen
17
+ * András Parditka
18
+ * Andy Hanson
19
+ * Anil Anar
20
+ * Anton Khlynovskiy
21
+ * Anton Tolmachev
22
+ * Arnav Singh
23
+ * Arthur Ozga
24
+ * Asad Saeeduddin
25
+ * Avery Morin
26
+ * Basarat Ali Syed
27
+ * Ben Duffield
28
+ * Ben Mosher
29
+ * Bill Ticehurst
30
+ * Blake Embrey
31
+ * @bootstraponline
32
+ * Bowden Kelly
33
+ * Brett Mayen
34
+ * Bryan Forbes
35
+ * Caitlin Potter
36
+ * Charly POLY
37
+ * Chris Bubernak
38
+ * Christophe Vidal
39
+ * Chuck Jazdzewski
40
+ * Colby Russell
41
+ * Colin Snover
42
+ * Cotton Hou
43
+ * Cyrus Najmabadi
44
+ * Dafrok Zhang
45
+ * Dan Corder
46
+ * Dan Quirk
47
+ * Daniel Hollocher
48
+ * Daniel Rosenwasser
49
+ * David Kmenta
50
+ * David Li
51
+ * David Souther
52
+ * Denis Nedelyaev
53
+ * Dick van den Brink
54
+ * Dirk Bäumer
55
+ * Dirk Holtwick
56
+ * Dom Chen
57
+ * Doug Ilijev
58
+ * Elisée Maurer
59
+ * Emilio García-Pumarino
60
+ * Eric Tsang
61
+ * Erik Edrosa
62
+ * Ethan Resnick
63
+ * Ethan Rubio
64
+ * Evan Martin
65
+ * Evan Sebastian
66
+ * Eyas Sharaiha
67
+ * Fabian Cook
68
+ * @falsandtru
69
+ * Frank Wallis
70
+ * Franklin Tse
71
+ * František Žiacik
72
+ * Gabe Moothart
73
+ * Gabriel Isenberg
74
+ * Gilad Peleg
75
+ * Godfrey Chan
76
+ * Graeme Wicksted
77
+ * Guilherme Oenning
78
+ * Guillaume Salles
79
+ * Guy Bedford
80
+ * Harald Niesche
81
+ * Herrington Darkholme
82
+ * Iain Monro
83
+ * Ingvar Stepanyan
84
+ * Isiah Meadows
85
+ * Ivo Gabe de Wolff
86
+ * Jakub Młokosiewicz
87
+ * James Whitney
88
+ * Jason Freeman
89
+ * Jason Killian
90
+ * Jason Ramsay
91
+ * JBerger
92
+ * Jed Mao
93
+ * Jeffrey Morlan
94
+ * Jesse Schalken
95
+ * Jiri Tobisek
96
+ * Joey Wilson
97
+ * Johannes Rieken
98
+ * John Vilk
99
+ * Jonathan Bond-Caron
100
+ * Jonathan Park
101
+ * Jonathan Toland
102
+ * Jonathan Turner
103
+ * Jonathon Smith
104
+ * Josh Abernathy
105
+ * Josh Kalderimis
106
+ * Josh Soref
107
+ * Juan Luis Boya García
108
+ * Julian Williams
109
+ * Justin Bay
110
+ * Justin Johansson
111
+ * Kagami Sascha Rosylight
112
+ * Kanchalai Tanglertsampan
113
+ * Keith Mashinter
114
+ * Ken Howard
115
+ * Kenji Imamula
116
+ * Kevin Lang
117
+ * Kyle Kelley
118
+ * Lorant Pinter
119
+ * Lucien Greathouse
120
+ * Lukas Elmer
121
+ * Marin Marinov
122
+ * Marius Schulz
123
+ * Martin Vseticka
124
+ * Masahiro Wakame
125
+ * Matt McCutchen
126
+ * Mattias Buelens
127
+ * Mattias Buelens
128
+ * Max Deepfield
129
+ * Micah Zoltu
130
+ * Michael
131
+ * Michael Bromley
132
+ * Mohamed Hegazy
133
+ * Myles Megyesi
134
+ * Nathan Shively-Sanders
135
+ * Nathan Yee
136
+ * Nicolas Henry
137
+ * Nima Zahedi
138
+ * Noah Chen
139
+ * Noj Vek
140
+ * Oleg Mihailik
141
+ * Oleksandr Chekhovskyi
142
+ * Omer Sheikh
143
+ * Oskar Segersva¨rd
144
+ * Patrick Zhong
145
+ * Paul Jolly
146
+ * Paul van Brenk
147
+ * @pcbro
148
+ * Pedro Maltez
149
+ * Perry Jiang
150
+ * Peter Burns
151
+ * Philip Bulley
152
+ * Piero Cangianiello
153
+ * @piloopin
154
+ * Prayag Verma
155
+ * @progre
156
+ * Punya Biswal
157
+ * Rado Kirov
158
+ * Richard Knoll
159
+ * Richard Sentino
160
+ * Robert Coie
161
+ * Rohit Verma
162
+ * Ron Buckton
163
+ * Rostislav Galimsky
164
+ * Rowan Wyborn
165
+ * Ryan Cavanaugh
166
+ * Ryohei Ikegami
167
+ * Sam El-Husseini
168
+ * Sarangan Rajamanickam
169
+ * Sergey Shandar
170
+ * Sheetal Nandi
171
+ * Shengping Zhong
172
+ * Shyyko Serhiy
173
+ * Simon Hürlimann
174
+ * Slawomir Sadziak
175
+ * Solal Pirelli
176
+ * Stan Thomas
177
+ * Stanislav Sysoev
178
+ * Steve Lucco
179
+ * Sudheesh Singanamalla
180
+ * Sébastien Arod
181
+ * @T18970237136
182
+ * Tarik Ozket
183
+ * Tetsuharu Ohzeki
184
+ * Thomas Loubiou
185
+ * Tien Hoanhtien
186
+ * Tim Lancina
187
+ * Tim Perry
188
+ * Tim Viiding-Spader
189
+ * Tingan Ho
190
+ * Todd Thomson
191
+ * togru
192
+ * Tomas Grubliauskas
193
+ * Torben Fitschen
194
+ * TruongSinh Tran-Nguyen
195
+ * Vidar Tonaas Fauske
196
+ * Viktor Zozulyak
197
+ * Vilic Vane
198
+ * Vladimir Matveev
199
+ * Wesley Wigham
200
+ * York Yao
201
+ * @yortus
202
+ * Yuichi Nukiyama
203
+ * Zev Spitz
204
+ * Zhengbo Li