TypeScript is a superset of JavaScript that compiles to clean JavaScript output.
TypeScript HTML PowerShell Groovy Shell Batchfile
Switch branches/tags
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Failed to load latest commit information.
.circleci Update circle config to build all branches Mar 14, 2018
.vscode Extract Method (squash) Aug 4, 2017
bin Moved LKG folder to lib Jul 27, 2015
doc Update the logo to the one which our website uses. Mar 17, 2017
lib Update LKG (#22085) Feb 21, 2018
scripts Apply 'no-unnecessary-type-assertion' lint rule (#22005) Feb 17, 2018
src Handle completions in interface / type literal similar to class (#22701) Mar 23, 2018
tests Handle completions in interface / type literal similar to class (#22701) Mar 23, 2018
.editorconfig Use CRLF, not LF. Mar 2, 2015
.gitattributes Never normalize end-of-lines on clone/commit. May 31, 2015
.gitignore configureNightly -> configurePrerelease Jan 20, 2018
.gitmodules Unshallow submodule clones, update submodule ref (#20636) Dec 12, 2017
.mailmap Update authors for release-2.8 Mar 24, 2018
.npmignore Update .npmignore (#22318) Mar 5, 2018
.travis.yml update branch list Mar 9, 2018
AUTHORS.md Update authors for release-2.8 Mar 24, 2018
CONTRIBUTING.md Update CONTRIBUTING.md Jan 8, 2018
CopyrightNotice.txt Baseline public API (#18897) Oct 3, 2017
Gulpfile.ts Change esnext.promise to es2018.promise (#22292) Mar 3, 2018
Jakefile.js Change esnext.promise to es2018.promise (#22292) Mar 3, 2018
LICENSE.txt Add snapshot of compiler sources Jul 13, 2014
README.md Update README.md Sep 7, 2017
ThirdPartyNoticeText.txt [Transforms] Merge master 07/11 into transform (#9697) Jul 18, 2016
issue_template.md Update issue_template.md Jan 17, 2018
jenkins.sh Update build scripts for npm5 May 30, 2017
netci.groovy Drop node 4, add node 8 for CI (#19617) Oct 31, 2017
package-lock.json Fixes for new mocha types (#22799) Mar 22, 2018
package.json Update version to 2.9. Mar 22, 2018
pull_request_template.md PR template typo: labeled / labelled (#21854) Feb 10, 2018
tslint.json Apply 'no-unnecessary-initializer' lint rule (#22014) Mar 6, 2018

README.md

Build Status npm version Downloads

TypeScript

Join the chat at https://gitter.im/Microsoft/TypeScript

TypeScript is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the playground, and stay up to date via our blog and Twitter account.

Installing

For the latest stable version:

npm install -g typescript

For our nightly builds:

npm install -g typescript@next

Contribute

There are many ways to contribute to TypeScript.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

Documentation

Building

In order to build the TypeScript compiler, ensure that you have Git and Node.js installed.

Clone a copy of the repo:

git clone https://github.com/Microsoft/TypeScript.git

Change to the TypeScript directory:

cd TypeScript

Install Gulp tools and dev dependencies:

npm install -g gulp
npm install

Use one of the following to build and test:

gulp local            # Build the compiler into built/local 
gulp clean            # Delete the built compiler 
gulp LKG              # Replace the last known good with the built one.
                      # Bootstrapping step to be executed when the built compiler reaches a stable state.
gulp tests            # Build the test infrastructure using the built compiler. 
gulp runtests         # Run tests using the built compiler and test infrastructure. 
                      # You can override the host or specify a test for this command. 
                      # Use host=<hostName> or tests=<testPath>. 
gulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional
                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.
gulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.
gulp lint             # Runs tslint on the TypeScript source.
gulp help             # List the above commands. 

Usage

node built/local/tsc.js hello.ts

Roadmap

For details on our planned features and future direction please refer to our roadmap.