-
Notifications
You must be signed in to change notification settings - Fork 12.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into there-can-be-only-one
- Loading branch information
Showing
17,069 changed files
with
1,936,899 additions
and
707,136 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
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,7 @@ | ||
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.154.0/containers/javascript-node/.devcontainer/base.Dockerfile | ||
|
||
# [Choice] Node.js version: 14, 12, 10 | ||
ARG VARIANT="14-buster" | ||
FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:0-${VARIANT} | ||
|
||
RUN sudo -u node npm install -g gulp-cli |
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,22 @@ | ||
{ | ||
"name": "Node.js", | ||
"build": { | ||
"dockerfile": "Dockerfile", | ||
"args": { | ||
"VARIANT": "14" | ||
} | ||
}, | ||
"settings": { | ||
"terminal.integrated.defaultProfile.linux": "bash", | ||
"terminal.integrated.profiles.linux": { | ||
"bash": { | ||
"path": "/bin/bash", | ||
"icon": "terminal-bash", | ||
}, | ||
}, | ||
}, | ||
"extensions": [ | ||
"dbaeumer.vscode-eslint" | ||
], | ||
"remoteUser": "node" | ||
} |
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 |
---|---|---|
|
@@ -43,7 +43,6 @@ yarn-error.log | |
.parallelperf.* | ||
.failed-tests | ||
TEST-results.xml | ||
package-lock.json | ||
tests | ||
.vscode | ||
.git |
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,4 +1,4 @@ | ||
/built/local/** | ||
/tests/** | ||
/lib/** | ||
/src/lib/*.generated.d.ts | ||
/src/lib/*.generated.d.ts |
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
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 |
---|---|---|
@@ -0,0 +1,55 @@ | ||
--- | ||
name: Library change | ||
about: Fix or improve issues with built-in type definitions like `lib.dom.d.ts`, `lib.es6.d.ts`, etc. | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
--- | ||
# lib Update Request | ||
|
||
<!-- | ||
Please fill in each section completely. Thank you! | ||
Are you here for one of these commonly-requested lib changes? | ||
* Object.keys - see https://stackoverflow.com/questions/55012174/ | ||
* Array methods - see https://github.com/microsoft/TypeScript/issues/36554 | ||
* parseInt, parseFloat, isFinite, isNaN, etc. - see https://github.com/microsoft/TypeScript/issues/4002 | ||
The DOM lib is maintained elsewhere and you can skip a step by filing issues/PRs for the DOM at that repo. | ||
See https://github.com/microsoft/TypeScript-DOM-lib-generator | ||
--> | ||
|
||
## Configuration Check | ||
|
||
<!-- | ||
If you're missing common new methods like Array.includes, you may have a misconfigured project. | ||
Try setting `lib: "es2020"` and checking whether the type you want is present. | ||
You can diagnose further by running `tsc` with `--listFilesOnly` or `--showConfig`. | ||
Conversely, if you are seeing built-in methods you expect to *not* see, check your 'lib' setting | ||
or review your dependencies for lib/reference directives that might be polluting | ||
your global scope. This is common when using the 'node' type library. See https://github.com/microsoft/TypeScript/issues/40184 | ||
Replace the text below: | ||
--> | ||
My compilation *target* is `ES2015` and my *lib* is `the default`. | ||
|
||
## Missing / Incorrect Definition | ||
|
||
<!-- | ||
What property, method, function, etc is missing or incorrect? | ||
--> | ||
|
||
## Sample Code | ||
|
||
<!-- | ||
What's some code using this that should work, but doesn't? | ||
--> | ||
|
||
## Documentation Link | ||
|
||
<!-- | ||
Link to relevant documentation (e.g. MDN, W3C, ECMAScript Spec) to consult for this property. | ||
Note that lib.dom.d.ts intentionally does not include browser-specific extensions | ||
or early experimental features. | ||
--> |
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,4 @@ | ||
name : CodeQL Configuration | ||
|
||
paths: | ||
- './src' |
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
Oops, something went wrong.