Skip to content

Commit 9a20df3

Browse files
author
Paul van Brenk
committed
Merge remote-tracking branch 'refs/remotes/Microsoft/master'
2 parents 5edb5cd + 87fdfc8 commit 9a20df3

File tree

12,906 files changed

+645411
-288269
lines changed

Some content is hidden

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

12,906 files changed

+645411
-288269
lines changed

.gitattributes

+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
*.js linguist-language=TypeScript
1+
*.js linguist-language=TypeScript
2+
* -text

.gitignore

+9-11
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,5 @@
11
node_modules/
22
built/*
3-
tests/cases/*.js
4-
tests/cases/*/*.js
5-
tests/cases/*/*/*.js
6-
tests/cases/*/*/*/*.js
7-
tests/cases/*/*/*/*/*.js
8-
tests/cases/*.js.map
9-
tests/cases/*/*.js.map
10-
tests/cases/*/*/*.js.map
11-
tests/cases/*/*/*/*.js.map
12-
tests/cases/*/*/*/*/*.js.map
133
tests/cases/rwc/*
144
tests/cases/test262/*
155
tests/cases/perf/*
@@ -21,13 +11,17 @@ tests/services/baselines/local/*
2111
tests/baselines/prototyping/local/*
2212
tests/baselines/rwc/*
2313
tests/baselines/test262/*
14+
tests/baselines/reference/projectOutput/*
2415
tests/baselines/local/projectOutput/*
2516
tests/services/baselines/prototyping/local/*
2617
tests/services/browser/typescriptServices.js
18+
scripts/configureNightly.js
2719
scripts/processDiagnosticMessages.d.ts
2820
scripts/processDiagnosticMessages.js
29-
scripts/importDefinitelyTypedTests.js
21+
scripts/importDefinitelyTypedTests/importDefinitelyTypedTests.js
3022
src/harness/*.js
23+
src/compiler/diagnosticInformationMap.generated.ts
24+
src/compiler/diagnosticMessages.generated.json
3125
rwc-report.html
3226
*.swp
3327
build.json
@@ -43,6 +37,10 @@ scripts/run.bat
4337
scripts/word2md.js
4438
scripts/ior.js
4539
scripts/*.js.map
40+
scripts/typings/
4641
coverage/
4742
internal/
4843
**/.DS_Store
44+
.settings
45+
.vscode/*
46+
!.vscode/tasks.json

.npmignore

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
built
22
doc
3+
lib/README.md
34
scripts
45
src
56
tests
6-
Jakefile
7-
.travis.yml
7+
internal
8+
tslint.json
9+
Jakefile.js
10+
.editorconfig
11+
.gitattributes
12+
.settings/
13+
.travis.yml
14+
.vscode/

.travis.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
language: node_js
22

33
node_js:
4+
- 'stable'
5+
- '4'
46
- '0.10'
57

6-
sudo: false
8+
sudo: false

.vscode/tasks.json

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
// Available variables which can be used inside of strings.
2+
// ${workspaceRoot}: the root folder of the team
3+
// ${file}: the current opened file
4+
// ${fileBasename}: the current opened file's basename
5+
// ${fileDirname}: the current opened file's dirname
6+
// ${fileExtname}: the current opened file's extension
7+
// ${cwd}: the current working directory of the spawned process
8+
{
9+
"version": "0.1.0",
10+
"command": "jake",
11+
"isShellCommand": true,
12+
"showOutput": "silent",
13+
"tasks": [
14+
{
15+
"taskName": "local",
16+
"isBuildCommand": true,
17+
"showOutput": "silent",
18+
"problemMatcher": [
19+
"$tsc"
20+
]
21+
},
22+
{
23+
"taskName": "lint-server",
24+
"args": [],
25+
"problemMatcher": {
26+
"owner": "typescript",
27+
"fileLocation": ["relative", "${workspaceRoot}"],
28+
"pattern": {
29+
"regexp": "^(warning|error)\\s+([^(]+)\\s+\\((\\d+|\\d+,\\d+|\\d+,\\d+,\\d+,\\d+)\\):\\s+(.*)$",
30+
"severity": 1,
31+
"file": 2,
32+
"location": 3,
33+
"message": 4
34+
},
35+
"watchedTaskBeginsRegExp": "^\\*\\*\\*Lint failure\\*\\*\\*$",
36+
"watchedTaskEndsRegExp": "^\\*\\*\\* Total \\d+ failures\\.$"
37+
},
38+
"showOutput": "always",
39+
"isWatching": true
40+
}
41+
]
42+
}

AUTHORS.md

+85
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
TypeScript is authored by:
2+
3+
* Adam Freidin
4+
* Ahmad Farid
5+
* Anders Hejlsberg
6+
* Arnav Singh
7+
* Arthur Ozga
8+
* Basarat Ali Syed
9+
* Ben Duffield
10+
* Bill Ticehurst
11+
* Brett Mayen
12+
* Bryan Forbes
13+
* Caitlin Potter
14+
* Chris Bubernak
15+
* Colby Russell
16+
* Colin Snover
17+
* Cyrus Najmabadi
18+
* Dan Quirk
19+
* Daniel Rosenwasser
20+
* David Li
21+
* Denis Nedelyaev
22+
* Dick van den Brink
23+
* Dirk Bäumer
24+
* Eyas Sharaiha
25+
* Frank Wallis
26+
* Gabriel Isenberg
27+
* Gilad Peleg
28+
* Graeme Wicksted
29+
* Guillaume Salles
30+
* Harald Niesche
31+
* Ingvar Stepanyan
32+
* Ivo Gabe de Wolff
33+
* James Whitney
34+
* Jason Freeman
35+
* Jason Ramsay
36+
* Jed Mao
37+
* Johannes Rieken
38+
* John Vilk
39+
* Jonathan Bond-Caron
40+
* Jonathan Park
41+
* Jonathan Turner
42+
* Josh Kalderimis
43+
* Julian Williams
44+
* Kagami Sascha Rosylight
45+
* Keith Mashinter
46+
* Ken Howard
47+
* Kenji Imamula
48+
* Lorant Pinter
49+
* Martin Všetička
50+
* Masahiro Wakame
51+
* Max Deepfield
52+
* Micah Zoltu
53+
* Mohamed Hegazy
54+
* Nathan Shively-Sanders
55+
* Oleg Mihailik
56+
* Oleksandr Chekhovskyi
57+
* Paul van Brenk
58+
* Pedro Maltez
59+
* Philip Bulley
60+
* piloopin
61+
* @progre
62+
* Punya Biswal
63+
* Ron Buckton
64+
* Ryan Cavanaugh
65+
* Ryohei Ikegami
66+
* Sébastien Arod
67+
* Sheetal Nandi
68+
* Shengping Zhong
69+
* Shyyko Serhiy
70+
* Simon Hürlimann
71+
* Solal Pirelli
72+
* Stan Thomas
73+
* Steve Lucco
74+
* Tien Hoanhtien
75+
* Tingan Ho
76+
* togru
77+
* Tomas Grubliauskas
78+
* TruongSinh Tran-Nguyen
79+
* Viliv Vane
80+
* Vladimir Matveev
81+
* Wesley Wigham
82+
* York Yao
83+
* Yui Tanglertsampan
84+
* Zev Spitz
85+
* Zhengbo Li

0 commit comments

Comments
 (0)