/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ const path = require('path'); const fs = require('fs'); const child_process = require('child_process'); const generatedNote = `// // **NOTE**: Do not edit directly! This file is generated using \`npm run import-typescript\` // `; const TYPESCRIPT_LIB_SOURCE = path.join( __dirname, '../node_modules/typescript/lib' ); const TYPESCRIPT_LIB_DESTINATION = path.join(__dirname, '../src/lib'); (function () { try { fs.statSync(TYPESCRIPT_LIB_DESTINATION); } catch (err) { fs.mkdirSync(TYPESCRIPT_LIB_DESTINATION); } importLibs(); const npmLsOutput = JSON.parse( child_process.execSync('npm ls typescript --depth=0 --json=true').toString() ); const typeScriptDependencyVersion = npmLsOutput.dependencies.typescript.version; fs.writeFileSync( path.join(TYPESCRIPT_LIB_DESTINATION, 'typescriptServicesMetadata.ts'), `${generatedNote} export const typescriptVersion = "${typeScriptDependencyVersion}";\n` ); var tsServices = fs .readFileSync(path.join(TYPESCRIPT_LIB_SOURCE, 'typescriptServices.js')) .toString(); // Ensure we never run into the node system... // (this also removes require calls that trick webpack into shimming those modules...) tsServices = tsServices.replace( /\n ts\.sys =([^]*)\n \}\)\(\);/m, `\n // MONACOCHANGE\n ts.sys = undefined;\n // END MONACOCHANGE` ); // Eliminate more require() calls... tsServices = tsServices.replace( /^( +)etwModule = require\(.*$/m, '$1// MONACOCHANGE\n$1etwModule = undefined;\n$1// END MONACOCHANGE' ); tsServices = tsServices.replace( /^( +)var result = ts\.sys\.require\(.*$/m, '$1// MONACOCHANGE\n$1var result = undefined;\n$1// END MONACOCHANGE' ); // Flag any new require calls (outside comments) so they can be corrected preemptively. // To avoid missing cases (or using an even more complex regex), temporarily remove comments // about require() and then check for lines actually calling require(). // \/[*/] matches the start of a comment (single or multi-line). // ^\s+\*[^/] matches (presumably) a later line of a multi-line comment. const tsServicesNoCommentedRequire = tsServices.replace( /(\/[*/]|^\s+\*[^/]).*\brequire\(.*/gm, '' ); const linesWithRequire = tsServicesNoCommentedRequire.match( /^.*?\brequire\(.*$/gm ); // Allow error messages to include references to require() in their strings const runtimeRequires = linesWithRequire && linesWithRequire.filter((l) => !l.includes(': diag(')); if (runtimeRequires && runtimeRequires.length && linesWithRequire) { console.error( 'Found new require() calls on the following lines. These should be removed to avoid breaking webpack builds.\n' ); console.error(linesWithRequire.join('\n')); process.exit(1); } var tsServices_amd = generatedNote + tsServices + ` // MONACOCHANGE // Defining the entire module name because r.js has an issue and cannot bundle this file // correctly with an anonymous define call define("vs/language/typescript/lib/typescriptServices", [], function() { return ts; }); // END MONACOCHANGE `; fs.writeFileSync( path.join(TYPESCRIPT_LIB_DESTINATION, 'typescriptServices-amd.js'), stripSourceMaps(tsServices_amd) ); var tsServices_esm = generatedNote + tsServices + ` // MONACOCHANGE export var createClassifier = ts.createClassifier; export var createLanguageService = ts.createLanguageService; export var displayPartsToString = ts.displayPartsToString; export var EndOfLineState = ts.EndOfLineState; export var flattenDiagnosticMessageText = ts.flattenDiagnosticMessageText; export var IndentStyle = ts.IndentStyle; export var ScriptKind = ts.ScriptKind; export var ScriptTarget = ts.ScriptTarget; export var TokenClass = ts.TokenClass; // END MONACOCHANGE `; fs.writeFileSync( path.join(TYPESCRIPT_LIB_DESTINATION, 'typescriptServices.js'), stripSourceMaps(tsServices_esm) ); var dtsServices = fs .readFileSync(path.join(TYPESCRIPT_LIB_SOURCE, 'typescriptServices.d.ts')) .toString(); dtsServices += ` // MONACOCHANGE export = ts; // END MONACOCHANGE `; fs.writeFileSync( path.join(TYPESCRIPT_LIB_DESTINATION, 'typescriptServices.d.ts'), generatedNote + dtsServices ); })(); function importLibs() { function readLibFile(name) { var srcPath = path.join(TYPESCRIPT_LIB_SOURCE, name); return fs.readFileSync(srcPath).toString(); } var strLibResult = `/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ ${generatedNote} /** Contains all the lib files */ export const libFileMap: Record = {} `; var strIndexResult = `/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ ${generatedNote} /** Contains all the lib files */ export const libFileSet: Record = {} `; var dtsFiles = fs .readdirSync(TYPESCRIPT_LIB_SOURCE) .filter((f) => f.includes('lib.')); while (dtsFiles.length > 0) { var name = dtsFiles.shift(); var output = readLibFile(name).replace(/\r\n/g, '\n'); strLibResult += `libFileMap['${name}'] = "${escapeText(output)}";\n`; strIndexResult += `libFileSet['${name}'] = true;\n`; } fs.writeFileSync( path.join(TYPESCRIPT_LIB_DESTINATION, 'lib.ts'), strLibResult ); fs.writeFileSync( path.join(TYPESCRIPT_LIB_DESTINATION, 'lib.index.ts'), strIndexResult ); } /** * Escape text such that it can be used in a javascript string enclosed by double quotes (") */ function escapeText(text) { // See http://www.javascriptkit.com/jsref/escapesequence.shtml var _backspace = '\b'.charCodeAt(0); var _formFeed = '\f'.charCodeAt(0); var _newLine = '\n'.charCodeAt(0); var _nullChar = 0; var _carriageReturn = '\r'.charCodeAt(0); var _tab = '\t'.charCodeAt(0); var _verticalTab = '\v'.charCodeAt(0); var _backslash = '\\'.charCodeAt(0); var _doubleQuote = '"'.charCodeAt(0); var startPos = 0, chrCode, replaceWith = null, resultPieces = []; for (var i = 0, len = text.length; i < len; i++) { chrCode = text.charCodeAt(i); switch (chrCode) { case _backspace: replaceWith = '\\b'; break; case _formFeed: replaceWith = '\\f'; break; case _newLine: replaceWith = '\\n'; break; case _nullChar: replaceWith = '\\0'; break; case _carriageReturn: replaceWith = '\\r'; break; case _tab: replaceWith = '\\t'; break; case _verticalTab: replaceWith = '\\v'; break; case _backslash: replaceWith = '\\\\'; break; case _doubleQuote: replaceWith = '\\"'; break; } if (replaceWith !== null) { resultPieces.push(text.substring(startPos, i)); resultPieces.push(replaceWith); startPos = i + 1; replaceWith = null; } } resultPieces.push(text.substring(startPos, len)); return resultPieces.join(''); } function stripSourceMaps(str) { return str.replace(/\/\/# sourceMappingURL[^\n]+/gm, ''); }