Skip to content

Commit 214df64

Browse files
committed
Add snapshot of compiler sources
1 parent 99ec3a9 commit 214df64

File tree

14,390 files changed

+671305
-0
lines changed

Some content is hidden

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

14,390 files changed

+671305
-0
lines changed

.gitignore

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
node_modules/
2+
built/
3+
bin/wrapped_tsc.js
4+
tests/cases/*.js
5+
tests/cases/*/*.js
6+
tests/cases/*/*/*.js
7+
tests/cases/*/*/*/*.js
8+
tests/cases/*/*/*/*/*.js
9+
tests/cases/*.js.map
10+
tests/cases/*/*.js.map
11+
tests/cases/*/*/*.js.map
12+
tests/cases/*/*/*/*.js.map
13+
tests/cases/*/*/*/*/*.js.map
14+
tests/cases/rwc/*
15+
tests/cases/perf/*
16+
!tests/cases/webharness/compilerToString.js
17+
tests/runners/*.js
18+
tests/runners/*/*.js
19+
tests/runners/rwc/*
20+
!tests/runners/rwc/rwcRunner.ts
21+
!tests/runners/rwc/loggedIO.ts
22+
diff-*.html
23+
test-args.txt
24+
*.suo
25+
~*.docx
26+
tests/baselines/local/*
27+
tests/baselines/reference/projectOutput/
28+
tests/services/baselines/local/*
29+
tests/baselines/prototyping/local/*
30+
tests/baselines/rwc/*
31+
tests/services/baselines/prototyping/local/*
32+
tests/services/browser/typescriptServices.js
33+
scripts/processDiagnosticMessages.d.ts
34+
scripts/processDiagnosticMessages.js
35+
src/compiler/*.js
36+
src/compiler/syntax/wrapped_SyntaxGenerator.js
37+
src/compiler/syntax/SyntaxGenerator.js
38+
src/compiler/syntax/SyntaxGenerator.d.ts
39+
src/compiler/prototype/*.js
40+
src/services/*.js
41+
src/services/*/*.js
42+
src/harness/*.js
43+
src/prototype/*.js
44+
src/prototype/*/*.js
45+
baseline-report.html
46+
fidelity-report.html
47+
rwc-report.html
48+
*.swp
49+
build.json
50+
monaco.editor.json
51+
samples/win8/encyclopedia/Encyclopedia/js/*.js
52+
samples/win8/encyclopedia/Encyclopedia/js/*.js.map
53+
samples/win8/encyclopedia/Encyclopedia/bin/
54+
samples/win8/encyclopedia/Encyclopedia/bld/
55+
samples/win8/encyclopedia/Encyclopedia/Encyclopedia.jsproj.user
56+
*.actual
57+
tests/Fidelity/*.d.ts
58+
tests/Fidelity/*.js
59+
tests/cases/webharness/*.d.ts
60+
tests/webhost/*.d.ts
61+
tests/webhost/webtsc.js
62+
tests/*.js
63+
tests/*.d.ts
64+
*.config
65+
scripts/debug.bat
66+
scripts/run.bat

.npmignore

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
built
2+
doc
3+
samples
4+
src
5+
tests
6+
typings
7+
bin/winjs.d.ts
8+
bin/winrt.d.ts
9+
bin/*.bat
10+
bin/jquery.d.ts
11+
bin/typescriptServices.js
12+
Jakefile

CopyrightNotice.txt

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/*! *****************************************************************************
2+
Copyright (c) Microsoft Corporation. All rights reserved.
3+
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
4+
this file except in compliance with the License. You may obtain a copy of the
5+
License at http://www.apache.org/licenses/LICENSE-2.0
6+
7+
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
8+
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
9+
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
10+
MERCHANTABLITY OR NON-INFRINGEMENT.
11+
12+
See the Apache Version 2.0 License for specific language governing permissions
13+
and limitations under the License.
14+
***************************************************************************** */
15+

0 commit comments

Comments
 (0)