mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-20 00:28:52 +01:00
* build/tsconfig: switch to module: nodenext for bun compat * build: rewrite imports for nodenext compat * build: re-generate
11 lines
639 B
JavaScript
11 lines
639 B
JavaScript
"use strict";
|
|
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const watch = process.platform === 'win32' ? require('./watch-win32') : require('vscode-gulp-watch');
|
|
module.exports = function () {
|
|
return watch.apply(null, arguments);
|
|
};
|
|
//# sourceMappingURL=index.js.map
|