mirror of
https://github.com/microsoft/vscode.git
synced 2026-02-15 07:28:05 +00:00
13 lines
618 B
TypeScript
13 lines
618 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
/**
|
|
* When `true`, self-hosting uses esbuild for fast transpilation (build/next)
|
|
* and gulp-tsb only for type-checking (`noEmit`).
|
|
*
|
|
* When `false`, gulp-tsb does both transpilation and type-checking (old behavior).
|
|
*/
|
|
export const useEsbuildTranspile = true;
|