-
Notifications
You must be signed in to change notification settings - Fork 12.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into allow-other-private-declarations
- Loading branch information
Showing
1,148 changed files
with
170,615 additions
and
138,078 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
|
||
--- | ||
|
||
<!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨 | ||
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section! | ||
Please help us by doing the following steps before logging an issue: | ||
* Search: https://github.com/Microsoft/TypeScript/search?type=Issues | ||
* Read the FAQ: https://github.com/Microsoft/TypeScript/wiki/FAQ | ||
Please fill in the *entire* template below. | ||
--> | ||
|
||
<!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. --> | ||
**TypeScript Version:** 2.9.0-dev.201xxxxx | ||
|
||
<!-- Search terms you tried before logging this (so others can find this issue more easily) --> | ||
**Search Terms:** | ||
|
||
**Code** | ||
|
||
```ts | ||
// A *self-contained* demonstration of the problem follows... | ||
// Test this by running `tsc` on the command-line, rather than through another build tool such as Gulp, Webpack, etc. | ||
``` | ||
|
||
**Expected behavior:** | ||
|
||
**Actual behavior:** | ||
|
||
**Playground Link:** <!-- A link to a TypeScript Playground "Share" link which demonstrates this behavior --> | ||
|
||
**Related Issues:** <!-- Did you find other bugs that looked similar? --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
|
||
--- | ||
|
||
<!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨 | ||
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Please read the FAQ first, especially the "Common Feature Requests" section. | ||
--> | ||
|
||
## Search Terms | ||
|
||
<!-- List of keywords you searched for before creating this issue. Write them down here so that others can find this suggestion more easily --> | ||
|
||
## Suggestion | ||
|
||
<!-- A summary of what you'd like to see added or changed --> | ||
|
||
## Use Cases | ||
|
||
<!-- | ||
What do you want to use this for? | ||
What shortcomings exist with current approaches? | ||
--> | ||
|
||
## Examples | ||
|
||
<!-- Show how this would be used and what the behavior would be --> | ||
|
||
## Checklist | ||
|
||
My suggestion meets these guidelines: | ||
[ ] This wouldn't be a breaking change in existing TypeScript / JavaScript code | ||
[ ] This wouldn't change the runtime behavior of existing JavaScript code | ||
[ ] This could be implemented without emitting different JS based on the types of the expressions | ||
[ ] This isn't a runtime feature (e.g. new expression-level syntax) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
name: Question | ||
about: The issue tracker is not for questions. Please use Stack Overflow or other resources for help writing TypeScript code. | ||
|
||
--- | ||
|
||
THE ISSUE TRACKER IS NOT FOR QUESTIONS. | ||
|
||
DO NOT CREATE A NEW ISSUE TO ASK A QUESTION. | ||
|
||
IF YOU ARE HAVING PROBLEMS WITH YOUR TYPESCRIPT CODE, DO NOT ASK A QUESTION HERE. | ||
|
||
Tens of thousands of TypeScript questions have been asked and answered on StackOverflow; see https://stackoverflow.com/questions/tagged/typescript . You can ask questions there or on other websites. | ||
|
||
The only exception is if you have a question about *the TypeScript compiler API itself*. Please post a complete example of what you're trying to do and precisely describe what your question is. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,34 @@ | ||
// Available variables which can be used inside of strings. | ||
// ${workspaceRoot}: the root folder of the team | ||
// ${file}: the current opened file | ||
// ${fileBasename}: the current opened file's basename | ||
// ${fileDirname}: the current opened file's dirname | ||
// ${fileExtname}: the current opened file's extension | ||
// ${cwd}: the current working directory of the spawned process | ||
{ | ||
"version": "0.1.0", | ||
"command": "gulp", | ||
"isShellCommand": true, | ||
"showOutput": "silent", | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"taskName": "local", | ||
"isBuildCommand": true, | ||
"showOutput": "silent", | ||
"problemMatcher": [ | ||
"$tsc" | ||
] | ||
"type": "shell", | ||
"identifier": "local", | ||
"label": "gulp: local", | ||
"command": "gulp", | ||
"args": ["local"], | ||
"group": { "kind": "build", "isDefault": true }, | ||
"problemMatcher": ["$gulp-tsc"] | ||
}, | ||
{ | ||
"taskName": "tests", | ||
"showOutput": "silent", | ||
"problemMatcher": [ | ||
"$tsc" | ||
] | ||
"type": "shell", | ||
"identifier": "tsc", | ||
"label": "gulp: tsc", | ||
"command": "gulp", | ||
"args": ["tsc"], | ||
"group": "build", | ||
"problemMatcher": ["$gulp-tsc"] | ||
}, | ||
{ | ||
"type": "shell", | ||
"identifier": "tests", | ||
"label": "gulp: tests", | ||
"command": "gulp", | ||
"args": ["tests"], | ||
"group": "build", | ||
"problemMatcher": ["$gulp-tsc"] | ||
} | ||
] | ||
} |
Oops, something went wrong.