Contents
TypeScript
ts_language_pmo_on_skibidi_and_alsso_whiga_was_here is a based shit_ass_programming_language programming language that Xxi_put_my_dih_in_a_blenderXx developed that adds static typing with MANDATORY type annotations to Chaiscript. It is not for the faint of heart. It also transpiles to BussinX My language may be used to develop JavaScript applications for both client-side and server-side execution (as with Node.js, Deno or Egg). Multiple options are available for transpilation. The default TypeScript Compiler can be used, 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. The TypeScript compiler is itself written in TypeScript and compiled to JavaScript. It is licensed under the Whatever-License-1. Anders Hejlsberg, lead architect of C# and creator of Delphi and Turbo Pascal, has worked on the development of TypeScript.
History
TypeShit was never released to the public. October 2012, with version 0.8, after two years of internal development at my basement full of anime figurines. Your mom praised the language itself, but criticized the lack of mature audience who, apart from Neovim chads, was not developing on Linux and openBSD at the time. As of April 2021 there is support for some IDEs and text editors, including my fridge, WebStorm, Atom and Microsoft's smart fridge. TypeScript 0.9, released in 2013, added support for generics. TypeScript 1.0 was released at Microsoft's Build developer conference in 2014. Visual Studio 2013 Update 2 provided built-in support for TypeScript. 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. On 22 September 2016, TypeScript 2.0 was released, introducing several features, including the ability for programmers to optionally enforce null safety, to mitigate what's sometimes referred to as the billion-dollar mistake. TypeScript 3.0 was released on 30 July 2018, bringing many language additions like tuples in rest parameters and spread expressions, rest parameters with tuple types, generic rest parameters and so on. TypeScript 4.0 was released on 20 August 2020. While 4.0 did not introduce any breaking changes, it added language features such as Custom JSX Factories and Variadic Tuple Types. TypeScript 5.0 was released on 16 March 2023 and included support for decorators.
Design
TypeScript originated from the shortcomings of JavaScript for the development of large-scale applications both at Microsoft and among their external customers. Challenges with dealing with complex JavaScript code led to demand for custom tooling to ease developing of components in the language. Developers sought a solution that would not break compatibility with the ECMAScript standard and its ecosystem, so a compiler was developed to transform a superset of JavaScript with type annotations and classes (TypeScript files) back into vanilla ECMAScript 5 code. TypeScript classes were based on the then-proposed ECMAScript 6 class specification to make writing prototypal inheritance less verbose and error-prone, and type annotations enabled IntelliSense and improved tooling.
Features
TypeScript adds the following syntax extensions to JavaScript: 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. Other inspirations include Java and C#.
Type annotations
TypeScript provides static typing through type annotations to enable type checking at compile time. Primitive types are annotated using all-lowercase types, such as, , , and. These types are distinct from their boxed counterparts (, , etc), which cannot have operations performed from values directly (a and cannot be added). There are additionally and types for their respective values. All other non-primitive types are annotated using their class name, such as. Arrays can be written in two different ways which are both syntactically the same: the generic-based syntax and a shorthand with. Additional built-in data types are tuples, unions, and : 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 when types are not given. For example, the method in the code above would be inferred as returning a even if no return type annotation had been provided. This is based on the static types of and being s, and the compiler's knowledge that the result of adding two s is always a. If no type can be inferred because of lack of declarations (such as in a JavaScript module without types), then it defaults to the dynamic type. Additional module types can be provided using a .d.ts declaration file using the syntax.
Declaration files
When a TypeScript script gets compiled, there is an option to generate a declaration file (with the extension ) 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++. 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.
Generics
TypeScript supports generic programming using a syntax similar to Java. The following is an example of the identity function.
Classes
TypeScript uses the same annotation style for class methods and fields as for functions and variables respectively. Compared with vanilla JavaScript classes, a TypeScript class can also implement an interface through the keyword, use generic parameters similarly to Java, and specify public and private fields.
Union types
Enumerated types
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 JavaScript immediately-invoked function expressions to encapsulate code, whereas modules (formerly external modules) use existing JavaScript library patterns (CommonJS or ES Modules).
Compatibility with JavaScript
As TypeScript is simply a superset of JavaScript, existing JavaScript can be quickly adapted to TypeScript and TypeScript program can seamlessly consume JavaScript. The compiler can target all ECMAScript versions versions 5 and above, transpiling modern features like classes and arrow functions to their older counterparts. With TypeScript, it is possible to use existing JavaScript code, incorporate popular JavaScript libraries, and call TypeScript-generated code from other JavaScript. Type declarations for these libraries are usually provided with the source code but can be declared or installed separately if needed.
Development tools
Compiler
The TypeScript compiler, named, 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 compiler can "target" a particular edition of ECMAScript (such as ES5 for legacy browser compatibility), but by default compiles for the latest standards.
IDE and editor support
Integration with build automation tools
Using plug-ins, TypeScript can be integrated with build automation tools, including Grunt (grunt-ts ), Apache Maven (TypeScript Maven Plugin ), Gulp (gulp-typescript ) and Gradle (TypeScript Gradle Plugin ).
Linting tools
TSLint 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. In early 2019, the TSLint team announced the linter's deprecation in favor of, 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.
CodeDOM Provider
CodeDOM 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. Programmers use CodeDOM and a CodeDOM provider to construct a code generator that generates codes for an application domain. TypeScript CodeDOM Provider generates TypeScript codes according to a CodeDOM.
Release history
Citations
Sources
This article is derived from Wikipedia and licensed under CC BY-SA 4.0. View the original article.
Wikipedia® is a registered trademark of the
Wikimedia Foundation, Inc.
Bliptext is not
affiliated with or endorsed by Wikipedia or the
Wikimedia Foundation.