mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-20 18:28:58 +00:00
Bump default JS target for scripts in html (#150240)
* Bump default JS target for scripts in html For JS/TS files, we target ES2020 by default. However in html files we're still stuck targetting es6 This change aligns the two * use es2020.full (includes dom), fix web, avoid searching in node_modules Co-authored-by: Martin Aeschlimann <martinae@microsoft.com>
This commit is contained in:
@@ -31,7 +31,7 @@ module.exports = function () {
|
||||
queue.push(name);
|
||||
};
|
||||
|
||||
enqueue('es6');
|
||||
enqueue('es2020.full');
|
||||
|
||||
var result = [];
|
||||
while (queue.length > 0) {
|
||||
|
||||
Reference in New Issue
Block a user