Typescript: Difference between revisions

From wikinotes
No edit summary
No edit summary
Line 1: Line 1:
A superset of [[javascript]] with compile-time type-checking.<br>
A superset of [[javascript]] that compiles to javascript, and includes compile-time type-checking.<br>
it's runtime behaviour remains untyped.<br>
it's runtime behaviour remains untyped.<br>
The strictness of type-checks is configurable.
The strictness of type-checks is configurable.

Revision as of 03:04, 11 December 2022

A superset of javascript that compiles to javascript, and includes compile-time type-checking.
it's runtime behaviour remains untyped.
The strictness of type-checks is configurable.

Documentation

official docs https://www.typescriptlang.org/docs/
homepage https://www.typescriptlang.org/

Intro/Reference

Libraries

typescript libraries

Syntax

typescript interface

Tools

typescript compilers