Различия

Показаны различия между двумя версиями страницы.

Ссылка на это сравнение

Следующая версия
Предыдущая версия
tsc [2024/12/10 11:43] – создано mirocowtsc [2024/12/10 11:47] (текущий) mirocow
Строка 1: Строка 1:
-====== Заголовок ======+====== TypeScript (tsc) ======
  
-TypeScript adds additional syntax to JavaScript to support a tighter integration with your editor. Catch errors early in your editor. +TypeScript is a superset of JavaScript that compiles to clean JavaScript output. 
-TypeScript code converts to JavaScript, which runs anywhere JavaScript runs: In a browser, on Node.js, Deno, Bun and in your apps. + 
-TypeScript understands JavaScript and uses type inference to give you great tooling without additional code.+  * TypeScript adds additional syntax to JavaScript to support a tighter integration with your editor. Catch errors early in your editor. 
 +  TypeScript code converts to JavaScript, which runs anywhere JavaScript runs: In a browser, on Node.js, Deno, Bun and in your apps. 
 +  TypeScript understands JavaScript and uses type inference to give you great tooling without additional code. 
 + 
 +<note tip><code bash> 
 +npm install typescript-compiler 
 +</code></note>
  
   * https://www.typescriptlang.org/   * https://www.typescriptlang.org/
   * https://github.com/microsoft/TypeScript   * https://github.com/microsoft/TypeScript
 +  * https://www.npmjs.com/package/typescript-compiler
   * https://www.typescriptlang.org/play   * https://www.typescriptlang.org/play
 +  * https://www.typescriptlang.org/docs/handbook/compiler-options.html
 +  * https://habr.com/ru/companies/vk/articles/530712/