mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-24 20:26:08 +00:00
41 lines
1.3 KiB
TypeScript
41 lines
1.3 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import * as path from 'path';
|
|
import * as fs from 'fs';
|
|
|
|
// TODO@esm remove this
|
|
|
|
const outDirectory = path.join(__dirname, '..', '..', 'out-build');
|
|
const esmMarkerFile = path.join(outDirectory, 'esm');
|
|
|
|
export function setESM(enabled: boolean) {
|
|
const result = () => new Promise<void>((resolve, _) => {
|
|
if (enabled) {
|
|
fs.mkdirSync(outDirectory, { recursive: true });
|
|
fs.writeFileSync(esmMarkerFile, 'true', 'utf8');
|
|
console.warn(`Setting build to ESM: true`);
|
|
} else {
|
|
console.warn(`Setting build to ESM: false`);
|
|
}
|
|
|
|
resolve();
|
|
});
|
|
result.taskName = 'set-esm';
|
|
return result;
|
|
}
|
|
|
|
export function isESM(logWarning?: string): boolean {
|
|
try {
|
|
const res = (typeof process.env.VSCODE_BUILD_ESM === 'string' && process.env.VSCODE_BUILD_ESM.toLowerCase() === 'true') || (fs.readFileSync(esmMarkerFile, 'utf8') === 'true');
|
|
if (res && logWarning) {
|
|
console.warn(`[esm] ${logWarning}`);
|
|
}
|
|
return res;
|
|
} catch (error) {
|
|
return false;
|
|
}
|
|
}
|