"use strict"; /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ Object.defineProperty(exports, "__esModule", { value: true }); exports.convertTypeScriptDiagnostic = convertTypeScriptDiagnostic; const node_os_1 = require("node:os"); /** * Converts TypeScript Diagnostic related information into an esbuild compatible note object. * Related information is a subset of a full TypeScript Diagnostic and also used for diagnostic * notes associated with the main Diagnostic. * @param info The TypeScript diagnostic relative information to convert. * @returns An esbuild diagnostic message as a PartialMessage object */ function convertTypeScriptDiagnosticInfo(typescript, info, textPrefix) { const newLine = (0, node_os_1.platform)() === 'win32' ? '\r\n' : '\n'; let text = typescript.flattenDiagnosticMessageText(info.messageText, newLine); if (textPrefix) { text = textPrefix + text; } const note = { text }; if (info.file) { note.location = { file: info.file.fileName, length: info.length, }; // Calculate the line/column location and extract the full line text that has the diagnostic if (info.start) { const { line, character } = typescript.getLineAndCharacterOfPosition(info.file, info.start); note.location.line = line + 1; note.location.column = character; // The start position for the slice is the first character of the error line const lineStartPosition = typescript.getPositionOfLineAndCharacter(info.file, line, 0); // The end position for the slice is the first character of the next line or the length of // the entire file if the line is the last line of the file (getPositionOfLineAndCharacter // will error if a nonexistent line is passed). const { line: lastLineOfFile } = typescript.getLineAndCharacterOfPosition(info.file, info.file.text.length - 1); const lineEndPosition = line < lastLineOfFile ? typescript.getPositionOfLineAndCharacter(info.file, line + 1, 0) : info.file.text.length; note.location.lineText = info.file.text.slice(lineStartPosition, lineEndPosition).trimEnd(); } } return note; } /** * Converts a TypeScript Diagnostic message into an esbuild compatible message object. * @param diagnostic The TypeScript diagnostic to convert. * @returns An esbuild diagnostic message as a PartialMessage object */ function convertTypeScriptDiagnostic(typescript, diagnostic) { let codePrefix = 'TS'; let code = `${diagnostic.code}`; if (diagnostic.source === 'ngtsc') { codePrefix = 'NG'; // Remove `-99` Angular prefix from diagnostic code code = code.slice(3); } const message = convertTypeScriptDiagnosticInfo(typescript, diagnostic, `${codePrefix}${code}: `); if (diagnostic.relatedInformation?.length) { message.notes = diagnostic.relatedInformation.map((info) => convertTypeScriptDiagnosticInfo(typescript, info)); } return message; }