TypeScript

From HandWiki
Short description: Programming language and superset of JavaScript
TypeScript
Typescript.svg
ParadigmMulti-paradigm: functional, generic, imperative, object-oriented
Designed byMicrosoft
DeveloperMicrosoft
First appeared1 October 2012; 11 years ago (2012-10-01)[1]
Typing disciplineDuck, gradual, structural[2]
LicenseApache License 2.0
Filename extensions.ts, .tsx, .mts, .cts
Websitewww.typescriptlang.org
Influenced by
C#, Java, JavaScript, ActionScript[3]
Influenced
AtScript, AssemblyScript

TypeScript is a free and open-source high-level programming language developed by Microsoft that adds static typing with optional type annotations to JavaScript. It is designed for the development of large applications and transpiles to JavaScript.[4] Because TypeScript is a superset of JavaScript, all JavaScript programs are syntactically valid TypeScript, but they can fail to type-check for safety reasons.

TypeScript may be used to develop JavaScript applications for both client-side and server-side execution (as with Node.js, Deno or Bun). Multiple options are available for transpilation. The default TypeScript Compiler can be used,[5] or the Babel compiler can be invoked to convert TypeScript to JavaScript.

TypeScript supports definition files that can contain type information of existing JavaScript libraries, much like C++ header files can describe the structure of existing object files. This enables other programs to use the values defined in the files as if they were statically typed TypeScript entities. There are third-party header files for popular libraries such as jQuery, MongoDB, and D3.js. TypeScript headers for the Node.js library modules are also available, allowing development of Node.js programs within TypeScript.[6]

The TypeScript compiler is itself written in TypeScript and compiled to JavaScript. It is licensed under the Apache License 2.0. Anders Hejlsberg, lead architect of C# and creator of Delphi and Turbo Pascal, has worked on the development of TypeScript.[7][8][9][10]

History

TypeScript was released to the public in October 2012, with version 0.8, after two years of internal development at Microsoft.[11][12] Soon after the initial public release, Miguel de Icaza praised the language itself, but criticized the lack of mature IDE support apart from Microsoft Visual Studio, which was not available on Linux and OS X at that time.[13][14] As of April 2021 there is support in other IDEs and text editors, including Emacs, Vim, WebStorm, Atom[15] and Microsoft's own Visual Studio Code.[16] TypeScript 0.9, released in 2013, added support for generics.[17]

TypeScript 1.0 was released at Microsoft's Build developer conference in 2014.[18] Visual Studio 2013 Update 2 provides built-in support for TypeScript.[19] Further improvement were made in July 2014, when the development team announced a new TypeScript compiler, asserted to have a five-fold performance increase. Simultaneously, the source code, which was initially hosted on CodePlex, was moved to GitHub.[20]

On 22 September 2016, TypeScript 2.0 was released, introducing several features, including the ability for programmers to optionally enforce null safety,[21] to mitigate what's sometimes referred to as the billion-dollar mistake.

TypeScript 3.0 was released on 30 July 2018,[22] bringing many language additions like tuples in rest parameters and spread expressions, rest parameters with tuple types, generic rest parameters and so on.[23]

TypeScript 4.0 was released on 20 August 2020.[24] While 4.0 did not introduce any breaking changes, it added language features such as Custom JSX Factories and Variadic Tuple Types.[24]

TypeScript 5.0 was released on 16 March 2023 and included support for decorators.[25]

Design

TypeScript originated from the shortcomings of JavaScript for the development of large-scale applications both at Microsoft and among their external customers.[26] Challenges with dealing with complex JavaScript code led to demand for custom tooling to ease developing of components in the language.[27]

TypeScript developers sought a solution that would not break compatibility with the standard and its cross-platform support. Knowing that the current ECMAScript standard proposal promised future support for class-based programming, TypeScript was based on that proposal. That led to a JavaScript compiler with a set of syntactical language extensions, a superset based on the proposal, that transforms the extensions into regular JavaScript. In this sense, the class feature of TypeScript was a preview of what to expect from ECMAScript 2015. A unique aspect not in the proposal, but added to TypeScript, is optional static typing (also known as gradual typing) that enables static language analysis to facilitate tooling and IDE support.

ECMAScript 2015 support

TypeScript adds support for features such as classes, modules, and an arrow function syntax as defined in the ECMAScript 2015 standard.

Features

TypeScript is a language extension that adds features to ECMAScript 6. Additional features include:

The following features are backported from ECMAScript 2015:

Syntactically, TypeScript is very similar to JScript .NET, another Microsoft implementation of the ECMA-262 language standard that added support for static typing and classical object-oriented language features such as classes, inheritance, interfaces, and namespaces.

Compatibility with JavaScript

Main page: JavaScript

TypeScript is a strict superset of ECMAScript 2015, which is itself a superset of ECMAScript 5, commonly referred to as JavaScript.[30] As such, a JavaScript program is also a valid TypeScript program and a TypeScript program can seamlessly consume JavaScript. By default the compiler targets ECMAScript 5, the current prevailing standard, but is also able to generate constructs used in ECMAScript 3 or 2015.

With TypeScript, it is possible to use existing JavaScript code, incorporate popular JavaScript libraries, and call TypeScript-generated code from other JavaScript.[31] Type declarations for these libraries are provided with the source code.

Type annotations

TypeScript provides static typing through type annotations to enable type checking at compile time. This is optional and can be ignored to use the regular dynamic typing of JavaScript.

function add(left: number, right: number): number {
	return left + right;
}

Primitive types are annotated using the types number, boolean, and string. These types are distinct from their class counterparts (Number, Boolean, etc), which cannot have operations performed from values directly. For instance, a Number and a number cannot be added. There is additionally undefined and null types for their respective values.

All other types are annotated using their class name rather than primitives, such as Error. Some types take in generic parameters, such as a Promise — a promise to a string would be annotated as Promise<string>. Arrays can be written in two different ways which are both syntactically the same: the generic-based syntax Array<T> and a shorthand with T[]. Generic types can additionally be chained, so a Promise to an Array of strings could be written as Promise<Array<string>> (or Promise<string[]> using the shorthand array style).

Additional built-in data types are: Tuple, Union, never and any. An array with predefined data types at each index is a Tuple. A variable that can hold more than one type of data is a Union type. The never type is used when a given type should be impossible to create. Weakly or dynamically-typed structures can use the any type to avoid errors, although this is generally discouraged practice.[32]

Type annotations can be exported to a separate declarations file to make type information available for TypeScript scripts using types already compiled into JavaScript. Annotations can be declared for an existing JavaScript library, as has been done for Node.js and jQuery.

The TypeScript compiler makes use of type inference to infer types when types are not given. For example, the add method in the code above would be inferred as returning a number even if no return type annotation had been provided. This is based on the static types of left and right being numbers, and the compiler's knowledge that the result of adding two numbers is always a number. However, explicitly declaring the return type allows the compiler to verify correctness.

If no type can be inferred because of lack of declarations, then it defaults to the dynamic any type. A value of the any type supports the same operations as a value in JavaScript and minimal static type checking is performed for operations on any values.[33]

Declaration files

When a TypeScript script gets compiled there is an option to generate a declaration file (with the extension .d.ts) that functions as an interface to the components in the compiled JavaScript. In the process the compiler strips away all function and method bodies and preserves only the signatures of the types that are exported. The resulting declaration file can then be used to describe the exported virtual TypeScript types of a JavaScript library or module when a third-party developer consumes it from TypeScript.

The concept of declaration files is analogous to the concept of header files found in C/C++.

declare namespace arithmetics {
    add(left: number, right: number): number;
    subtract(left: number, right: number): number;
    multiply(left: number, right: number): number;
    divide(left: number, right: number): number;
}

Type declaration files can be written by hand for existing JavaScript libraries, as has been done for jQuery and Node.js.

Large collections of declaration files for popular JavaScript libraries are hosted on GitHub in DefinitelyTyped.

Classes

TypeScript supports ECMAScript 2015 classes that integrate the optional type annotations support.

class Person {
    private name: string;
    private age: number;
    private salary: number;

    constructor(name: string, age: number, salary: number) {
        this.name = name;
        this.age = age;
        this.salary = salary;
    }

    toString(): string {
        return `${this.name} (${this.age}) (${this.salary})`; // As of version 1.4
    }
}

Generics

Main page: Generic programming

TypeScript supports generic programming.[34] The following is an example of the identity function.[35]

function id<T>(x: T): T {
    return x;
}

Union types

Union types are supported in TypeScript.[36] The values are implicitly "tagged" with a type by the language, and may be retrieved by "typeof()".

function successor(n: number | bigint): number | bigint {
    return ++n
}

Enumerated types

TypeScript adds an 'enum' data type to JavaScript.

enum Cardsuit {Clubs, Diamonds, Hearts, Spades};
var c: Cardsuit = Cardsuit.Diamonds;

By default, enums number members starting at 0; this can be overridden by setting the value of the first:

enum Cardsuit {Clubs = 1, Diamonds, Hearts, Spades};
var c: Cardsuit = Cardsuit.Diamonds;

All the values can be set:

enum Cardsuit {Clubs = 1, Diamonds = 2, Hearts = 4, Spades = 8};
var c: Cardsuit = Cardsuit.Diamonds;

TypeScript supports mapping the numeric value to its name. For example, this finds the name of the value 2:

enum Cardsuit {Clubs = 1, Diamonds, Hearts, Spades};
var suitName: string = Cardsuit[2];

alert(suitName);

Modules and namespaces

TypeScript distinguishes between modules and namespaces. Both features in TypeScript support encapsulation of classes, interfaces, functions and variables into containers. Namespaces (formerly internal modules) utilize immediately-invoked function expression of JavaScript to encapsulate code, whereas modules (formerly external modules) leverage JavaScript library patterns to do so (AMD or CommonJS).[37]

Development tools

Compiler

The TypeScript compiler, named tsc, is written in TypeScript. As a result, it can be compiled into regular JavaScript and can then be executed in any JavaScript engine (e.g. a browser). The compiler package comes bundled with a script host that can execute the compiler. It is also available as a Node.js package that uses Node.js as a host.

The current version of the compiler supports ECMAScript 5 by default. An option is allowed to target ECMAScript 2015 to make use of language features exclusive to that version (e.g. generators). Classes, despite being part of the ECMAScript 2015 standard, are available in both modes.

IDE and editor support

  • Microsoft provides a plug-in for Visual Studio 2012 and WebMatrix, full integrated support in Visual Studio 2013, Visual Studio 2015, and basic text editor support for Emacs and Vim.[38]
  • Visual Studio Code is a (mostly) open-source, cross-platform source code editor developed by Microsoft based on Electron. It supports TypeScript in addition to several other languages, and offers features like debugging and intelligent code completion.
  • alm.tools is an open source cloud IDE for TypeScript built using TypeScript, ReactJS and TypeStyle.
  • JetBrains supports TypeScript with code completion, refactoring and debugging in its IDEs built on IntelliJ platform, such as PhpStorm 6, WebStorm 6, and IntelliJ IDEA,[39] as well as their Visual Studio Add-in and extension, ReSharper 8.1.[40][41]
  • Atom has a TypeScript plugin with support for code completion, navigation, formatting, and fast compilation.[42]
  • The online Cloud9 IDE and Codenvy support TypeScript.
  • A plugin is available for the NetBeans IDE.
  • A plugin is available for the Eclipse IDE (version Kepler)
  • TypEcs is available for the Eclipse IDE.
  • The Cross Platform Cloud IDE Codeanywhere supports TypeScript.
  • Webclipse An Eclipse plugin designed to develop TypeScript and Angular 2.
  • Angular IDE A standalone IDE available via npm to develop TypeScript and Angular 2 applications, with integrated terminal support.
  • Tide – TypeScript Interactive Development Environment for Emacs.

Integration with build automation tools

Main page: Software:Build automation

Using plug-ins, TypeScript can be integrated with build automation tools, including Grunt (grunt-ts[43]), Apache Maven (TypeScript Maven Plugin[44]), Gulp (gulp-typescript[45]) and Gradle (TypeScript Gradle Plugin[46]).

Linting tools

TSLint[47] scans TypeScript code for conformance to a set of standards and guidelines. ESLint, a standard JavaScript linter, also provided some support for TypeScript via community plugins. However, ESLint's inability to leverage TypeScript's language services precluded certain forms of semantic linting and program-wide analysis.[48] In early 2019, the TSLint team announced the linter's deprecation in favor of typescript-eslint, a joint effort of the TSLint, ESLint and TypeScript teams to consolidate linting under the ESLint umbrella for improved performance, community unity and developer accessibility.[49]

CodeDOM Provider

CodeDOM[50] provides types that represent common types of source code elements, which will be transformed to data types, classes and statements etc. of a programming language through a CodeDOMProvider.[51] Programmers use CodeDOM and a CodeDOM provider to construct a code generator that generates codes for an application domain. TypeScript CodeDOM Provider[52] generates TypeScript codes according a CodeDOM.

Release history

Version number Release date Significant changes
0.8 1 October 2012 (2012-10-01)
0.9 18 June 2013 (2013-06-18)
1.0 12 April 2014 (2014-04-12)
1.1 6 October 2014 (2014-10-06) performance improvements
1.3 12 November 2014 (2014-11-12) protected modifier, tuple types
1.4 20 January 2015 (2015-01-20) union types, let and const declarations, template strings, type guards, type aliases
1.5 20 July 2015 (2015-07-20) ES6 modules, namespace keyword, for..of support, decorators
1.6 16 September 2015 (2015-09-16) JSX support, intersection types, local type declarations, abstract classes and methods, user-defined type guard functions
1.7 30 November 2015 (2015-11-30) async and await support,
1.8 22 February 2016 (2016-02-22) constraints generics, control flow analysis errors, string literal types, allowJs
2.0 22 September 2016 (2016-09-22) null- and undefined-aware types, control flow based type analysis, discriminated union types, never type, readonly keyword, type of this for functions
2.1 8 November 2016 (2016-11-08) keyof and lookup types, mapped types, object spread and rest,
2.2 22 February 2017 (2017-02-22) mix-in classes, object type,
2.3 27 April 2017 (2017-04-27) async iteration, generic parameter defaults, strict option
2.4 27 June 2017 (2017-06-27) dynamic import expressions, string enums, improved inference for generics, strict contravariance for callback parameters
2.5 31 August 2017 (2017-08-31) optional catch clause variables
2.6 31 October 2017 (2017-10-31) strict function types
2.7 31 January 2018 (2018-01-31) constant-named properties, fixed length tuples
2.8 27 March 2018 (2018-03-27) conditional types, improved keyof with intersection types
2.9 14 May 2018 (2018-05-14) support for symbols and numeric literals in keyofand mapped object types
3.0 30 July 2018 (2018-07-30) project references, extracting and spreading parameter lists with tuples
3.1 27 September 2018 (2018-09-27) mappable tuple and array types
3.2 30 November 2018 (2018-11-30) stricter checking for bind, call, and apply
3.3 31 January 2019 (2019-01-31) relaxed rules on methods of union types, incremental builds for composite projects
3.4 29 March 2019 (2019-03-29) faster incremental builds, type inference from generic functions, readonly modifier for arrays, const assertions, type-checking global this
3.5 29 May 2019 (2019-05-29) faster incremental builds, omit helper type, improved excess property checks in union types, smarter union type checking
3.6 28 August 2019 (2019-08-28) Stricter generators, more accurate array spread, better unicode support for identifiers
3.7 5 November 2019 (2019-11-05) Optional Chaining, Nullish Coalescing
3.8 20 February 2020 (2020-02-20) Type-only imports and exports, ECMAScript private fields, top-level await
3.9 12 May 2020 (2020-05-12) Improvements in Inference, Speed Improvements
4.0 20 August 2020 (2020-08-20) Variadic Tuple Types, Labeled Tuple Elements
4.1 19 November 2020 (2020-11-19) Template Literal Types, Key Remapping in Mapped Types, Recursive Conditional Types
4.2 25 February 2021 (2021-02-25) Smarter Type Alias Preservation, Leading/Middle Rest Elements in Tuple Types, Stricter Checks For The in Operator, abstract Construct Signatures
4.3 26 May 2021 (2021-05-26) Separate Write Types on Properties, override and the --noImplicitOverride Flag, Template String Type Improvements
4.4 26 August 2021 (2021-08-26) Control Flow Analysis of Aliased Conditions and Discriminants, Symbol and Template String Pattern Index Signatures
4.5 17 November 2021 (2021-11-17) Type and Promise Improvements, Supporting lib from node_modules, Template String Types as Discriminants, and es2022 module
4.6 28 February 2022 (2022-02-28) Type Inference and Checks Improvements, Support for ES2022 Target, Better EcmaScript Handling
4.7 24 May 2022 (2022-05-24) Support for ES Modules, Instantiation Expressions, Variance Annotations for Type Parameters, Better Control-Flow Checks and Type Check Improvements
4.8 25 August 2022 (2022-08-25) Intersection and Union Types Improvements, Better Type Inference
4.9 15 November 2022 (2022-11-15) satisfies Operator, Auto-Accessors in Classes (proposal), Improvements in Type Narrowing and Checks
5.0 16 March 2023 (2023-03-16) ES Decorators (proposal), Type Inference Improvements, bundler Module Resolution Mode, Speed and Size Optimizations
5.1 1 June 2023 (2023-06-01) Easier Implicit Returns for undefined and Unrelated Types for Getters and Setters
5.2 24 August 2023 (2023-08-24) using Declarations and Explicit Resource Management, Decorator Metadata and Named and Anonymous Tuple Elements
5.3 20 November 2023 (2023-11-20) Better Type Narrowing, Checks and Optimizations

See also

References

Citations

  1. "TypeScript". CodePlex. https://typescript.codeplex.com/releases/view/95554. 
  2. "Type Compatibility". https://www.typescriptlang.org/docs/handbook/type-compatibility.html. 
  3. Nelson, Gary (28 April 2020). "How ActionScript foreshadowed TypeScript" (in en). https://javascript.plainenglish.io/how-actionscript-foreshadowed-typescript-149cdb764de9. 
  4. Bright, Peter (3 October 2012). "Microsoft TypeScript: the JavaScript we need, or a solution looking for a problem?". Ars Technica. Condé Nast. https://arstechnica.com/information-technology/2012/10/microsoft-typescript-the-javascript-we-need-or-a-solution-looking-for-a-problem/. 
  5. "TypeScript Programming with Visual Studio Code" (in en). https://code.visualstudio.com/docs/languages/typescript. 
  6. "borisyankov/DefinitelyTyped". GitHub. https://github.com/borisyankov/DefinitelyTyped. 
  7. Foley, Mary Jo (1 October 2012). "Microsoft takes the wraps off TypeScript, a superset of JavaScript". ZDNet. CBS Interactive. http://www.zdnet.com/microsoft-takes-the-wraps-off-typescript-a-superset-of-javascript-7000004993/. 
  8. Somasegar, S. (1 October 2012). "Somasegar's blog". Microsoft. http://blogs.msdn.com/b/somasegar/archive/2012/10/01/typescript-javascript-development-at-application-scale.aspx. 
  9. Baxter-Reynolds, Matt (1 October 2012). "Microsoft TypeScript: Can the father of C# save us from the tyranny of JavaScript?". ZDNet. http://www.zdnet.com/microsoft-typescript-can-the-father-of-c-save-us-from-the-tyranny-of-javascript-7000005054/. 
  10. Jackson, Joab (1 October 2012). "Microsoft Augments Javascript for Large-scale Development". CIO. IDG Enterprise. http://www.cio.com/article/717679/Microsoft_Augments_Javascript_for_Large_scale_Development. 
  11. "Microsoft augments JavaScript for large-scale development". InfoWorld. IDG. 1 October 2012. http://www.infoworld.com/d/application-development/microsoft-augments-javascript-large-scale-development-203737. 
  12. Turner, Jonathan (2 April 2014). "Announcing TypeScript 1.0". TypeScript Language team blog. Microsoft. https://devblogs.microsoft.com/typescript/announcing-typescript-1-0/. 
  13. Miguel de Icaza (1 October 2012). "TypeScript: First Impressions". http://tirania.org/blog/archive/2012/Oct-01.html. "But TypeScript only delivers half of the value in using a strongly typed language to Unix developers: strong typing. Intellisense, code completion and refactoring are tools that are only available to Visual Studio Professional users on Windows. There is no Eclipse, MonoDevelop or Emacs support for any of the language features" 
  14. "Microsoft TypeScript: Can the father of C# save us from the tyranny of JavaScript?". ZDNet. 1 October 2012. http://www.zdnet.com/microsoft-typescript-can-the-father-of-c-save-us-from-the-tyranny-of-javascript-7000005054/. "And I think this is a pretty big misstep. If you're building web apps that run on anything other than Windows, you're likely using a Mac and most likely not using Visual Studio. You need the Visual Studio plug-in to get the IntelliSense. All you get without Visual Studio is the strong-typing. You don't get the productivity benefits you get from IntelliSense.." 
  15. "TypeStrong: The only TypeScript package you will ever need". https://github.com/TypeStrong/atom-typescript. 
  16. Hillar, Gastón (14 May 2013). "Working with TypeScript in Visual Studio 2012". Dr. Dobb's Journal. http://www.drdobbs.com/windows/working-with-typescript-in-visual-studio/240154792. 
  17. "TypeScript 0.9 arrives with new compiler, support for generics". The Register. 18 June 2013. https://www.theregister.co.uk/2013/06/18/typescript_update_0_9/. 
  18. Hejlsberg, Anders (2 April 2014). "TypeScript". Channel 9. Microsoft. http://channel9.msdn.com/Events/Build/2014/3-576. 
  19. Jackson, Joab (25 February 2014). "Microsoft TypeScript graduates to Visual Studio". PC World. IDG. http://www.pcworld.com/article/2101920/microsoft-typescript-graduates-to-visual-studio.html. 
  20. Turner, Jonathan (21 July 2014). "New Compiler and Moving to GitHub". TypeScript Language team blog. Microsoft. http://blogs.msdn.com/b/typescript/archive/2014/07/21/new-compiler-and-moving-to-github.aspx. [yes|permanent dead link|dead link}}]
  21. Bright, Peter (22 September 2016). "TypeScript, Microsoft's JavaScript for big applications, reaches version 2.0". Ars Technica. Condé Nast. https://arstechnica.com/information-technology/2016/09/typescript-microsofts-javascript-for-big-applications-reaches-version-2-0/. 
  22. "Announcing TypeScript 3.0". 30 July 2018. https://devblogs.microsoft.com/typescript/announcing-typescript-3-0/. 
  23. "TypeScript 3.0". 30 July 2018. https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-0.html. 
  24. 24.0 24.1 "Announcing TypeScript 4.0" (in en-US). 20 August 2020. https://devblogs.microsoft.com/typescript/announcing-typescript-4-0/. 
  25. "Documentation - TypeScript 5.0" (in en). https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-0.html. 
  26. Anders Hejlsberg (5 October 2012). "What is TypeScript and why with Anders Hejlsberg". www.hanselminutes.com. http://www.hanselminutes.com/340/what-is-typescript-and-why-with-anders-hejlsberg. 
  27. S. Somasegar (1 October 2012). "TypeScript: JavaScript Development at Application Scale". msdn.com. http://blogs.msdn.com/b/somasegar/archive/2012/10/01/typescript-javascript-development-at-application-scale.aspx. 
  28. "Documentation - TypeScript 5.2" (in en). https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-2.html. 
  29. Klint Finley (1 October 2012). "Microsoft Previews New JavaScript-Like Programming Language TypeScript". TechCrunch. https://techcrunch.com/2012/10/01/microsoft-previews-new-javascript-like-programming-language-typescript/. 
  30. "Angular 2". https://angular.io/docs/ts/latest/guide/upgrade.html. 
  31. "Welcome to TypeScript". typescriptlang.org. Microsoft. http://www.typescriptlang.org/. 
  32. "TypeScript: Documentation - Everyday Types". https://www.typescriptlang.org/docs/handbook/2/everyday-types.html. 
  33. "TypeScript Language Specification p.24". Archived from the original on 17 November 2013. https://web.archive.org/web/20131117065339/http://www.typescriptlang.org/Content/TypeScript%20Language%20Specification.pdf. 
  34. Turner, Jonathan (18 June 2013). "Announcing TypeScript 0.9". TypeScript Language team blog. Microsoft. http://blogs.msdn.com/b/typescript/archive/2013/06/18/announcing-typescript-0-9.aspx. 
  35. "Generics in Typescript". Microsoft. https://www.typescriptlang.org/docs/handbook/generics.html#working-with-generic-type-variables. 
  36. "Handbook - Unions and Intersection Types" (in en). https://www.typescriptlang.org/docs/handbook/unions-and-intersections.html. 
  37. Sönke Sothmann (31 January 2014). "An introduction to TypeScript's module system". blog.oio.de. http://blog.oio.de/2014/01/31/an-introduction-to-typescript-module-system/. 
  38. Olivier Bloch (1 October 2012). "Sublime Text, Vi, Emacs: TypeScript enabled!". Microsoft. http://blogs.msdn.com/b/interoperability/archive/2012/10/01/sublime-text-vi-emacs-typescript-enabled.aspx. 
  39. "TypeScript support in WebStorm 6". JetBrains. http://blog.jetbrains.com/webide/2013/02/typescript-support-in-webstorm-6. 
  40. "TypeScript support in ReSharper 8.1". JetBrains. 28 October 2013. http://blog.jetbrains.com/dotnet/2013/10/28/typescript-support-resharper-81/. 
  41. "ReSharper: The Visual Studio Extension for .NET Developers by JetBrains". https://www.jetbrains.com/resharper/. 
  42. "atom-typescript" (in en). https://atom.io/packages/atom-typescript. 
  43. "TypeStrong/grunt-ts". GitHub. https://github.com/basarat/grunt-ts. 
  44. "ppedregal/typescript-maven-plugin". GitHub. https://github.com/ppedregal/typescript-maven-plugin. 
  45. "ivogabe/gulp-typescript". GitHub. https://github.com/ivogabe/gulp-typescript. 
  46. "sothmann/typescript-gradle-plugin". GitHub. https://github.com/sothmann/typescript-gradle-plugin. 
  47. "TSLint". https://palantir.github.io/tslint/. 
  48. Palantir (19 February 2019). "TSLint in 2019". https://medium.com/palantir/tslint-in-2019-1a144c2317a9. 
  49. "TSLint Deprecated to Focus Support on typescript-eslint". https://www.infoq.com/news/2019/02/tslint-deprecated-eslint. 
  50. "CodeDOM". https://learn.microsoft.com/en-us/dotnet/framework/reflection-and-codedom/using-the-codedom. 
  51. "CodeDOMProvider". https://learn.microsoft.com/en-us/dotnet/api/system.codedom.compiler.codedomprovider. 
  52. "TypeScript CodeDOM Provider". https://github.com/zijianhuang/webapiclientgen/wiki/TypeScript-CodeDOM. 

Sources

External links