/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/4import { createRequire } from 'node:module';56const require = createRequire(import.meta.url);7const watch = process.platform === 'win32' ? require('./watch-win32.ts').default : require('vscode-gulp-watch');89export default function (...args: any[]): ReturnType<typeof watch> {10return watch.apply(null, args);11}121314