Paradigm | Multi-paradigm: functional, generic, imperative, object-oriented |
---|---|
Designed by | Microsoft |
Developer | Microsoft |
First appeared | 1 October 2012[1] |
Stable release | 5.0.4[2] ![]() |
Typing discipline | Duck, gradual, structural[3] |
License | Apache License 2.0 |
Filename extensions | .ts, .tsx, .mts, .cts |
Website | www |
Influenced by | |
C#, Java, JavaScript, ActionScript[4] | |
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.[5] 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 or Deno). Multiple options are available for transpilation. The default TypeScript Compiler can be used,[6] 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.[7]
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.[8][9][10][11]
TypeScript was released to the public in October 2012, with version 0.8, after two years of internal development at Microsoft.[12][13] 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.[14][15] As of April 2021 there is support in other IDEs and text editors, including Emacs, Vim, WebStorm, Atom[16] and Microsoft's own Visual Studio Code.[17]TypeScript 0.9, released in 2013, added support for generics.[18]
TypeScript 1.0 was released at Microsoft's Build developer conference in 2014.[19] Visual Studio 2013 Update 2 provides built-in support for TypeScript.[20] 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.[21]
On 22 September 2016, TypeScript 2.0 was released, introducing several features, including the ability for programmers to optionally enforce null safety,[22] sometimes referred to as the billion-dollar mistake.
TypeScript 3.0 was released on 30 July 2018,[23] bringing many language additions like tuples in rest parameters and spread expressions, rest parameters with tuple types, generic rest parameters and so on.[24]
TypeScript 4.0 was released on 20 August 2020.[25] While 4.0 did not introduce any breaking changes, it added language features such as Custom JSX Factories and Variadic Tuple Types.[25]
TypeScript 5.0 was released on 16 March 2023 and included support for decorators.[26]
TypeScript originated from the shortcomings of JavaScript for the development of large-scale applications both at Microsoft and among their external customers.[27] Challenges with dealing with complex JavaScript code led to demand for custom tooling to ease developing of components in the language.[28]
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.
Main article: ECMAScript § 6th Edition - ECMAScript 2015 |
TypeScript adds support for features such as classes, modules, and an arrow function syntax as defined in the ECMAScript 2015 standard.
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.
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.
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;
}
The annotations for the primitive types are number
, boolean
and string
.
Typescript also supports data types with following annotations Array
, Enums
, void
.
Additional data types are: Tuple
, Union
, never
and any
.
An array with predefined data types at each index is Tuple
type.
A variable that holds more than one type of data is Union
type.
When you are sure that something is never going to occur you use never
type.
Weakly- or dynamically-typed structures are of any
type.[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]
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 file 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.
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
}
}
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 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
}
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]
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.
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]).
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]
Version number | Release date | Significant changes |
---|---|---|
0.8 | 1 October 2012 | |
0.9 | 18 June 2013 | |
1.0 | 12 April 2014 | |
1.1 | 6 October 2014 | performance improvements |
1.3 | 12 November 2014 | protected modifier, tuple types
|
1.4 | 20 January 2015 | union types, let and const declarations, template strings, type guards, type aliases
|
1.5 | 20 July 2015 | ES6 modules, namespace keyword, for..of support, decorators
|
1.6 | 16 September 2015 | JSX support, intersection types, local type declarations, abstract classes and methods, user-defined type guard functions |
1.7 | 30 November 2015 | async and await support,
|
1.8 | 22 February 2016 | constraints generics, control flow analysis errors, string literal types, allowJs
|
2.0 | 22 September 2016 | 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 | keyof and lookup types, mapped types, object spread and rest,
|
2.2 | 22 February 2017 | mix-in classes, object type,
|
2.3 | 27 April 2017 | async iteration, generic parameter defaults, strict option
|
2.4 | 27 June 2017 | dynamic import expressions, string enums, improved inference for generics, strict contravariance for callback parameters |
2.5 | 31 August 2017 | optional catch clause variables |
2.6 | 31 October 2017 | strict function types |
2.7 | 31 January 2018 | constant-named properties, fixed length tuples |
2.8 | 27 March 2018 | conditional types, improved keyof with intersection types
|
2.9 | 14 May 2018 | support for symbols and numeric literals in keyof and mapped object types |
3.0 | 30 July 2018 | project references, extracting and spreading parameter lists with tuples |
3.1 | 27 September 2018 | mappable tuple and array types |
3.2 | 30 November 2018 | stricter checking for bind, call, and apply |
3.3 | 31 January 2019 | relaxed rules on methods of union types, incremental builds for composite projects |
3.4 | 29 March 2019 | faster incremental builds, type inference from generic functions, readonly modifier for arrays, const assertions, type-checking global this
|
3.5 | 29 May 2019 | faster incremental builds, omit helper type, improved excess property checks in union types, smarter union type checking |
3.6 | 28 August 2019 | Stricter generators, more accurate array spread, better unicode support for identifiers |
3.7 | 5 November 2019 | Optional Chaining, Nullish Coalescing |
3.8 | 20 February 2020 | Type-only imports and exports, ECMAScript private fields, top-level await |
3.9 | 12 May 2020 | Improvements in Inference, Speed Improvements |
4.0 | 20 August 2020 | Variadic Tuple Types, Labeled Tuple Elements |
4.1 | 19 November 2020 | Template Literal Types, Key Remapping in Mapped Types, Recursive Conditional Types |
4.2 | 25 February 2021 | 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 | Separate Write Types on Properties, override and the --noImplicitOverride Flag, Template String Type Improvements
|
4.4 | 26 August 2021 | Control Flow Analysis of Aliased Conditions and Discriminants, Symbol and Template String Pattern Index Signatures |
4.5 | 17 November 2021 | Type and Promise Improvements, Supporting lib from node_modules, Template String Types as Discriminants, and es2022 module |
4.6 | 28 February 2022 | See TypeScript 4.6 Microsoft release announcement [1] |
4.7 | 24 May 2022 | See TypeScript 4.7 Microsoft release announcement [2] |
4.8 | 25 August 2022 | See TypeScript 4.8 Microsoft release announcement [3] |
4.9 | 15 November 2022 | See TypeScript 4.9 Microsoft release announcement [4] |
5.0 | 16 March 2023 | See TypeScript 5.0 Microsoft release announcement [5] |