Skip to content

Commit 09b168d

Browse files
committed
merge conflicts
1 parent f52aa4b commit 09b168d

File tree

4,333 files changed

+421732
-281097
lines changed

Some content is hidden

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

4,333 files changed

+421732
-281097
lines changed

.gitignore

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ tests/cases/perf/*
66
!tests/cases/webharness/compilerToString.js
77
test-args.txt
88
~*.docx
9+
\#*\#
10+
.\#*
911
tests/baselines/local/*
1012
tests/services/baselines/local/*
1113
tests/baselines/prototyping/local/*
@@ -26,11 +28,12 @@ rwc-report.html
2628
*.swp
2729
build.json
2830
*.actual
31+
tests/webTestServer.js
32+
tests/webTestServer.js.map
2933
tests/webhost/*.d.ts
3034
tests/webhost/webtsc.js
3135
tests/cases/**/*.js
3236
tests/cases/**/*.js.map
33-
tests/cases/**/*.d.ts
3437
*.config
3538
scripts/debug.bat
3639
scripts/run.bat
@@ -42,5 +45,8 @@ coverage/
4245
internal/
4346
**/.DS_Store
4447
.settings
45-
.vscode/*
46-
!.vscode/tasks.json
48+
**/.vs
49+
**/.vscode
50+
!**/.vscode/tasks.json
51+
!tests/cases/projects/projectOption/**/node_modules
52+
!tests/cases/projects/NodeModulesSearch/**/*

.npmignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
built
22
doc
3+
internal
4+
issue_template.md
35
lib/README.md
6+
pull_request_template.md
47
scripts
58
src
69
tests
7-
internal
810
tslint.json
911
Jakefile.js
1012
.editorconfig

.vscode/tasks.json

Lines changed: 1 addition & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// ${cwd}: the current working directory of the spawned process
88
{
99
"version": "0.1.0",
10-
"command": "jake",
10+
"command": "gulp",
1111
"isShellCommand": true,
1212
"showOutput": "silent",
1313
"tasks": [
@@ -18,25 +18,6 @@
1818
"problemMatcher": [
1919
"$tsc"
2020
]
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
4021
}
4122
]
4223
}

CONTRIBUTING.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,10 @@ In general, things we find useful when reviewing suggestions are:
4040

4141
# Instructions for Contributing Code
4242

43+
## Code of Conduct
44+
45+
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
46+
4347
## Contributing bug fixes
4448

4549
TypeScript is currently accepting contributions in the form of bug fixes. A bug must have an issue tracking it in the issue tracker that has been approved ("Milestone == Community") by the TypeScript team. Your pull request should include a link to the bug that you are fixing. If you've submitted a PR for a bug, please post a comment in the bug to avoid duplication of effort.
@@ -91,10 +95,10 @@ These two files represent the DOM typings and are auto-generated. To make any mo
9195

9296
## Running the Tests
9397

94-
To run all tests, invoke the `runtests` target using jake:
98+
To run all tests, invoke the `runtests-parallel` target using jake:
9599

96100
```Shell
97-
jake runtests
101+
jake runtests-parallel
98102
```
99103

100104
This run will all tests; to run only a specific subset of tests, use:

0 commit comments

Comments
 (0)