Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

TypeScript

From Wikipedia, the free encyclopedia
Programming language and superset of JavaScript
For the typed instance analogous to a handwritten document, seeManuscript.

TypeScript
ParadigmMulti-paradigm:functional,generic,imperative,object-oriented
FamilyECMAScript
Designed byMicrosoft,
Anders Hejlsberg,
Luke Hoban
DeveloperMicrosoft
First appeared1 October 2012; 13 years ago (2012-10-01)[1]
Stable release
5.9[2] Edit this on Wikidata / 1 August 2025; 4 months ago (1 August 2025)
Typing disciplineDuck,gradual,strong,structural[3]
ScopeLexical
LicenseApache 2.0
Filename extensions.ts, .tsx, .mts, .cts
Websitewww.typescriptlang.org
Influenced by
C#,F#,[4]Java,JavaScript,ActionScript[5]
Influenced
AtScript,AssemblyScript,ArkTS

TypeScript (TS) is ahigh-levelprogramming language that addsstatic typing with optional typeannotations toJavaScript. It is designed for developing large applications. Ittranspiles to JavaScript.[6] It is developed byMicrosoft asfree and open-source software released under anApache License 2.0.

TypeScript may be used to develop JavaScript applications for bothclient-side andserver-side execution (as withReact.js,Node.js,Deno orBun). Multiple options are available for transpiling. The default TypeScript Compiler can be used,[7] or theBabel compiler can be invoked to convert TypeScript to JavaScript.

TypeScript supports definition files that can contain type information of existing JavaScriptlibraries, much likeC++header files can describe the structure of existingobject 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 asjQuery,MongoDB, andD3.js. TypeScript headers for theNode.js library modules are also available, allowing development of Node.js programs within TypeScript.[8]

The TypeScript compiler iswritten in TypeScript andcompiled to JavaScript. It is licensed under theApache License 2.0.Anders Hejlsberg, lead architect ofC# and creator ofDelphi andTurbo Pascal, has worked on developing TypeScript.[9][10][11][12]

History

[edit]

TypeScript was released to the public in October 2012, with version 0.8, after two years of internal development at Microsoft.[13][14] Soon after the initial public release,Miguel de Icaza praised the language, but criticized the lack of matureintegrated development environment (IDE) support apart fromMicrosoft Visual Studio, which was unavailable then onLinux andmacOS.[15][16] As of April 2021 there is support in other IDEs and text editors, includingEmacs,Vim,WebStorm,Atom[17] and Microsoft's ownVisual Studio Code.[18] TypeScript 0.9, released in 2013, added support forgenerics.[19]

TypeScript 1.0 was released at Microsoft'sBuild developer conference in 2014.[20]Visual Studio 2013 Update 2 provided built-in support for TypeScript.[21] 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 onCodePlex, was moved toGitHub.[22]

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

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

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

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

On March 11, 2025, Anders Hejlsberg announced on the TypeScript blog that the team is working on aGo port of the TypeScript compiler to be released as TypeScript version 7.0 later this year. It is expected to feature a 10xspeedup.[28]

Design

[edit]

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

Developers sought a solution that would not break compatibility with theECMAScript (ES) standard and its ecosystem, so acompiler 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 writingprototypal inheritance less verbose and error-prone, and type annotations enabledIntelliSense and improved tooling.

Features

[edit]
Main article:JavaScript syntax § TypeScript-specific features

TypeScript adds the following syntax extensions to #"/wiki/Type_signature" title="Type signature">Type signatures (annotations) andcompile-timetype checking

  • Type inference
  • Interfaces
  • Enumerated types
  • Generics
  • Namespaces
  • Tuples
  • Explicit resource management[31]
  • Syntactically, TypeScript is very similar toJScript .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 includeJava andC#.

    Compatibility with JavaScript

    [edit]
    Further information:JavaScript

    As TypeScript is simply a superset of JavaScript, existing JavaScript can be adapted to TypeScript and TypeScript program can seamlessly consume JavaScript. The compiler can target all ECMAScript 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.[32] Type declarations for these libraries are usually provided with the source code but can be declared or installed separately if needed.

    Development tools

    [edit]

    Compiler

    [edit]

    The TypeScript compiler, namedtsc, iswritten 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 aNode.js package that uses Node.js as a host.

    The compiler cantarget a given edition of ECMAScript (such asECMAScript 5 for legacy browser compatibility), but by default compiles for the latest standards.

    IDE and editor support

    [edit]
    • Microsoft provides aplug-in forVisual Studio 2012 andWebMatrix, full integrated support inVisual Studio 2013,Visual Studio 2015, and basic text editor support forEmacs andVim.[33]
    • Visual Studio Code supports TypeScript in addition to several other languages, and offers features like debugging and intelligentcode 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 asPhpStorm 6,WebStorm 6, andIntelliJ IDEA,[34] as well as their Visual Studio Add-in and extension, ReSharper 8.1.[35][36]
    • Atom has a TypeScript plugin with support for code completion, navigation, formatting, and fast compilation.[37]
    • The onlineCloud9 IDE andCodenvy support TypeScript.
    • A plugin is available for theNetBeans IDE.
    • A plugin is available for theEclipse IDE (version Kepler)
    • TypEcs is available for theEclipse IDE.
    • The Cross Platform Cloud IDECodeanywhere supports TypeScript.
    • Webclipse An Eclipse plugin designed to develop TypeScript andAngular 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 forEmacs.

    Integration with build automation tools

    [edit]
    Further information:Build automation

    Usingplug-ins, TypeScript can be integrated withbuild automation tools, including Grunt (grunt-ts[38]),Apache Maven (TypeScript Maven Plugin[39]), Gulp (gulp-typescript[40]) andGradle (TypeScript Gradle Plugin[41]).

    Linting tools

    [edit]

    TSLint[42] 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.[43] In early 2019, the TSLint team announced the linter's deprecation in favor oftypescript-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.[44]

    Release history

    [edit]
    icon
    This sectionneeds additional citations forverification. Please helpimprove this article byadding citations to reliable sources in this section. Unsourced material may be challenged and removed.(July 2025) (Learn how and when to remove this message)
    Legend:
    Unsupported
    Supported
    Latest version
    Preview version
    Future version
    Version numberRelease dateSignificant changes
    Unsupported: 0.81 October 2012 (2012-10-01)
    Unsupported: 0.918 June 2013 (2013-06-18)
    Unsupported: 1.012 April 2014 (2014-04-12)
    Unsupported: 1.16 October 2014 (2014-10-06)performance improvements
    Unsupported: 1.312 November 2014 (2014-11-12)protected modifier, tuple types
    Unsupported: 1.420 January 2015 (2015-01-20)union types,let andconst declarations, template strings, type guards, type aliases
    Unsupported: 1.520 July 2015 (2015-07-20)ES6 modules,namespace keyword,for..of support, decorators
    Unsupported: 1.616 September 2015 (2015-09-16)JSX support,intersection types, local type declarations,abstract classes and methods, user-defined type guard functions
    Unsupported: 1.730 November 2015 (2015-11-30)async andawait support,
    Unsupported: 1.822 February 2016 (2016-02-22)constraints generics, control flow analysis errors, string literal types,allowJs
    Unsupported: 2.022 September 2016 (2016-09-22)null- and undefined-aware types, control flow based type analysis, discriminated union types,never type,readonly keyword, type ofthis for functions
    Unsupported: 2.18 November 2016 (2016-11-08)keyof and lookup types, mapped types, object spread and rest,
    Unsupported: 2.222 February 2017 (2017-02-22)mix-in classes,object type,
    Unsupported: 2.327 April 2017 (2017-04-27)async iteration, generic parameter defaults, strict option
    Unsupported: 2.427 June 2017 (2017-06-27)dynamic import expressions, string enums, improved inference for generics, strict contravariance for callback parameters
    Unsupported: 2.531 August 2017 (2017-08-31)optional catch clause variables
    Unsupported: 2.631 October 2017 (2017-10-31)strict function types
    Unsupported: 2.731 January 2018 (2018-01-31)constant-named properties, fixed-length tuples
    Unsupported: 2.827 March 2018 (2018-03-27)conditional types, improvedkeyof with intersection types
    Unsupported: 2.914 May 2018 (2018-05-14)support for symbols and numeric literals inkeyof and mapped object types
    Unsupported: 3.030 July 2018 (2018-07-30)project references, extracting and spreading parameter lists with tuples
    Unsupported: 3.127 September 2018 (2018-09-27)mappable tuple and array types
    Unsupported: 3.230 November 2018 (2018-11-30)stricter checking forbind,call, andapply
    Unsupported: 3.331 January 2019 (2019-01-31)relaxed rules on methods of union types, incremental builds for composite projects
    Unsupported: 3.429 March 2019 (2019-03-29)faster incremental builds, type inference from generic functions,readonly modifier for arrays,const assertions, type-checking globalthis
    Unsupported: 3.529 May 2019 (2019-05-29)faster incremental builds, omit helper type, improved excess property checks in union types, smarter union type checking
    Unsupported: 3.628 August 2019 (2019-08-28)Stricter generators, more accurate array spread, better Unicode support for identifiers
    Unsupported: 3.75 November 2019 (2019-11-05)Optional chaining, nullish coalescing
    Unsupported: 3.820 February 2020 (2020-02-20)Type-only imports and exports, ECMAScript private fields, top-levelawait
    Unsupported: 3.912 May 2020 (2020-05-12)Improvements in inference, speed improvements
    Unsupported: 4.020 August 2020 (2020-08-20)Variadic tuple types, labeled tuple elements
    Unsupported: 4.119 November 2020 (2020-11-19)Template literal types, key remapping in mapped types, recursive conditional types
    Unsupported: 4.225 February 2021 (2021-02-25)Smarter type alias preservation, leading/middle rest elements in tuple types, stricter checks for thein operator,abstract construct signatures
    Unsupported: 4.326 May 2021 (2021-05-26)Separate write types on properties,override and the--noImplicitOverride flag, template string type improvements
    Unsupported: 4.426 August 2021 (2021-08-26)Control flow analysis of aliased conditions and discriminants, symbol and template string pattern index signatures
    Unsupported: 4.517 November 2021 (2021-11-17)Type and promise improvements, supporting lib fromnode_modules, template string types as discriminants, andes2022 module
    Unsupported: 4.628 February 2022 (2022-02-28)Type inference and checks improvements, support for ES2022 target, better ECMAScript handling
    Unsupported: 4.724 May 2022 (2022-05-24)Support for ES modules, instantiation expressions, variance annotations for type parameters, better control-flow checks and type check improvements
    Unsupported: 4.825 August 2022 (2022-08-25)Intersection and union types improvements, better type inference
    Unsupported: 4.915 November 2022 (2022-11-15)satisfies operator, auto-accessors in classes (proposal), improvements in type narrowing and checks
    Unsupported: 5.016 March 2023 (2023-03-16)ES decorators (proposal), type inference improvements,bundler module resolution mode, speed and size optimizations
    Unsupported: 5.11 June 2023 (2023-06-01)Easier implicit returns forundefined and unrelated types for getters and setters
    Unsupported: 5.224 August 2023 (2023-08-24)using declarations and explicit resource management, decorator metadata and named and anonymous tuple elements
    Unsupported: 5.320 November 2023 (2023-11-20)Improved type narrowing, correctness checks and performance optimizations
    Unsupported: 5.46 March 2024Object.groupBy andMap.groupBy support
    Unsupported: 5.520 June 2024Inferred Type Predicates, Regular Expression Syntax Checking, and Type Imports in JSDoc
    Unsupported: 5.69 September 2024Advanced type inference, variadic tuple enhancements, partial module declarations.
    Unsupported: 5.722 November 2024
    Unsupported: 5.828 February 2025
    Latest version:5.931 July 2025
    Future version: 6.0Introduce some deprecations and breaking changes to align with the upcoming native codebase.
    Future version: 7.0Rewrite in Go with faster performance.

    See also

    [edit]

    References

    [edit]

    Citations

    [edit]
    1. ^"TypeScript".CodePlex. Archived fromthe original on 3 April 2015. Retrieved26 April 2015.
    2. ^"Release 5.9". 1 August 2025. Retrieved9 August 2025.
    3. ^"Type Compatibility".TypeScript.Archived from the original on 12 March 2018. Retrieved21 March 2018.
    4. ^"The Early History of F#"(PDF).Archived(PDF) from the original on 9 August 2024. Retrieved5 February 2024.TypeScript was directly influenced by F#: one of the originators of TypeScript was Luke Hoban, who began TypeScript (then called Strada) immediately after working on F# 2.0. Recently he noted the influence of F# on early parts of the TypeScript design [Hoban 2017].
    5. ^Nelson, Gary (28 April 2020)."How ActionScript foreshadowed TypeScript".Medium.Archived from the original on 9 August 2024. Retrieved9 July 2022.
    6. ^Bright, Peter (3 October 2012)."Microsoft TypeScript: the JavaScript we need, or a solution looking for a problem?".Ars Technica.Condé Nast.Archived from the original on 9 October 2018. Retrieved26 April 2015.
    7. ^"TypeScript Programming with Visual Studio Code".code.visualstudio.com.Archived from the original on 22 September 2022. Retrieved12 February 2019.
    8. ^"borisyankov/DefinitelyTyped".GitHub.Archived from the original on 1 November 2015. Retrieved26 April 2015.
    9. ^Foley, Mary Jo (1 October 2012)."Microsoft takes the wraps off TypeScript, a superset of JavaScript".ZDNet.CBS Interactive.Archived from the original on 13 November 2014. Retrieved26 April 2015.
    10. ^Somasegar, S. (1 October 2012)."TypeScript: JavaScript Development at Application Scale".Somasegar's blog. Microsoft. Archived fromthe original on 26 September 2017. Retrieved26 April 2015.
    11. ^Baxter-Reynolds, Matt (1 October 2012)."Microsoft TypeScript: Can the father of C# save us from the tyranny of JavaScript?".ZDNet.Archived from the original on 3 August 2014. Retrieved26 April 2015.
    12. ^Jackson, Joab (1 October 2012)."Microsoft Augments Javascript for Large-scale Development".CIO.IDG Enterprise. Archived fromthe original on 17 December 2013. Retrieved26 April 2015.
    13. ^"Microsoft augments JavaScript for large-scale development".InfoWorld.IDG. 1 October 2012.Archived from the original on 31 May 2013. Retrieved26 April 2015.
    14. ^Turner, Jonathan (2 April 2014)."Announcing TypeScript 1.0".TypeScript Language team blog. Microsoft.Archived from the original on 5 September 2015. Retrieved20 October 2021.
    15. ^de Icaza, Miguel (1 October 2012)."TypeScript: First Impressions".Archived from the original on 24 February 2019. Retrieved12 October 2012.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.
    16. ^"Microsoft TypeScript: Can the father of C# save us from the tyranny of JavaScript?".ZDNet. 1 October 2012.Archived from the original on 3 August 2014. Retrieved12 October 2012.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.
    17. ^"TypeStrong: The only TypeScript package you will ever need".GitHub.Archived from the original on 19 December 2018. Retrieved21 July 2016.
    18. ^Hillar, Gastón (14 May 2013)."Working with TypeScript in Visual Studio 2012".Dr. Dobb's Journal.Archived from the original on 29 September 2018. Retrieved26 April 2015.
    19. ^"TypeScript 0.9 arrives with new compiler, support for generics".The Register. 18 June 2013.Archived from the original on 11 March 2018. Retrieved26 April 2015.
    20. ^Hejlsberg, Anders (2 April 2014)."TypeScript".Channel 9. Microsoft.Archived from the original on 25 May 2015. Retrieved26 April 2015.
    21. ^Jackson, Joab (25 February 2014)."Microsoft TypeScript graduates to Visual Studio".PC World.IDG.Archived from the original on 11 March 2016. Retrieved26 April 2015.
    22. ^Turner, Jonathan (21 July 2014)."New Compiler and Moving to GitHub".TypeScript Language team blog. Microsoft. Archived fromthe original on 22 July 2014. Retrieved26 April 2015.
    23. ^Bright, Peter (22 September 2016)."TypeScript, Microsoft's JavaScript for big applications, reaches version 2.0".Ars Technica.Condé Nast.Archived from the original on 21 December 2018. Retrieved22 September 2016.
    24. ^"Announcing TypeScript 3.0". 30 July 2018.Archived from the original on 30 May 2020. Retrieved16 March 2020.
    25. ^"TypeScript 3.0". 30 July 2018.Archived from the original on 6 June 2020. Retrieved16 March 2020.
    26. ^ab"Announcing TypeScript 4.0".TypeScript. 20 August 2020.Archived from the original on 9 August 2024. Retrieved30 October 2020.
    27. ^"Documentation – TypeScript 5.0".www.typescriptlang.org.Archived from the original on 9 August 2024. Retrieved18 May 2023.
    28. ^Hejlsberg, Anders (11 March 2025)."A 10x Faster TypeScript".TypeScript. Retrieved11 March 2025.
    29. ^Hejlsberg, Anders (5 October 2012)."What is TypeScript and why with Anders Hejlsberg". www.hanselminutes.com.Archived from the original on 27 December 2018. Retrieved15 January 2014.
    30. ^Somasegar, S. (1 October 2012)."TypeScript: JavaScript Development at Application Scale". msdn.com.Archived from the original on 22 April 2015. Retrieved27 November 2013.
    31. ^"Documentation – TypeScript 5.2".www.typescriptlang.org.Archived from the original on 9 August 2024. Retrieved9 November 2023.
    32. ^"Welcome to TypeScript".typescriptlang.org.Microsoft.Archived from the original on 10 March 2018. Retrieved26 April 2015.
    33. ^Bloch, Olivier (1 October 2012)."Sublime Text, Vi, Emacs: TypeScript enabled!".Microsoft.Archived from the original on 29 October 2012. Retrieved28 October 2012.
    34. ^"TypeScript support in WebStorm 6". JetBrains. 27 February 2013.Archived from the original on 2 June 2016. Retrieved20 April 2013.
    35. ^"TypeScript support in ReSharper 8.1". JetBrains. 28 October 2013.Archived from the original on 2 February 2014. Retrieved21 January 2014.
    36. ^"ReSharper: The Visual Studio Extension for .NET Developers by JetBrains".JetBrains.
    37. ^"atom-typescript".Atom.Archived from the original on 4 October 2016. Retrieved9 January 2020.
    38. ^"TypeStrong/grunt-ts".GitHub.Archived from the original on 16 April 2020. Retrieved26 April 2015.
    39. ^"ppedregal/typescript-maven-plugin".GitHub.Archived from the original on 11 June 2018. Retrieved26 April 2015.
    40. ^"ivogabe/gulp-typescript".GitHub.Archived from the original on 11 June 2018. Retrieved14 July 2017.
    41. ^"sothmann/typescript-gradle-plugin".GitHub.Archived from the original on 11 June 2018. Retrieved26 April 2015.
    42. ^"TSLint".palantir.github.io.Archived from the original on 21 December 2022. Retrieved11 February 2019.
    43. ^Palantir (19 February 2019)."TSLint in 2019".Medium. Retrieved24 April 2019.
    44. ^"TSLint Deprecated to Focus Support on typescript-eslint".InfoQ.Archived from the original on 9 August 2024. Retrieved24 April 2019.

    Sources

    [edit]

    External links

    [edit]
    Code analysis
    Subsets,* supersets
    Transpilers
    Concepts
    Debuggers
    Documentation generators
    Editors (comparison)
    Engines
    Frameworks
    Relatedtechnologies
    Package managers
    Module bundlers
    Server-side
    Unit testing frameworks (list)
    People
    Dialects
    Engines
    Frameworks
    Client-side
    Server-side
    Multiple
    • Cappuccino
    Libraries
    People
    Other
    Graphics and UI
    Audio
    Multimedia
    Web
    Data access
    Networking
    Communication
    Administration and
    management
    Component model
    Libraries
    Device drivers
    Security
    .NET
    Software factories
    IPC
    Accessibility
    Text and multilingual
    support
    Overview
    Software
    Applications
    Video games
    Programming
    languages
    Frameworks,
    development tools
    Operating systems
    Other
    Licenses
    Forges
    Related
    Platform
    Frameworks
    Libraries
    Languages
    National
    Other
    Retrieved from "https://en.wikipedia.org/w/index.php?title=TypeScript&oldid=1325227870"
    Categories:
    Hidden categories:

    [8]ページ先頭

    ©2009-2025 Movatter.jp