/*---------------------------------------------------------------------------------------------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*--------------------------------------------------------------------------------------------*/45/**6* When `true`, self-hosting uses esbuild for fast transpilation (build/next)7* and gulp-tsb only for type-checking (`noEmit`).8*9* When `false`, gulp-tsb does both transpilation and type-checking (old behavior).10*/11export const useEsbuildTranspile = true;121314