TextMate grammar files for TypeScript for VS Code, Sublime Text, and Atom.
Перейти к файлу
Sheetal Nandi 072bd267fe Fix the modifier detection for fields and parameters
Fixes #305 and #306
2016-10-11 12:30:14 -07:00
.vscode Remove typings folder, replace with tsd.json 2015-11-20 12:32:23 -08:00
build Update the build and test to use latest packages 2016-09-26 17:02:13 -07:00
tests Fix the modifier detection for fields and parameters 2016-10-11 12:30:14 -07:00
.gitignore Initial script to generate tmLanguage file for TypeScript grammar from yaml file 2016-09-20 13:00:30 -07:00
Comments.tmPreferences Initial commit. 2015-11-05 13:14:57 -08:00
ErrorList.YAML-tmLanguage Initial commit. 2015-11-05 13:14:57 -08:00
FindRefs.YAML-tmLanguage Parse longer expressions first, to help ligatures in Editors 2016-04-18 14:21:47 +02:00
LICENSE.txt License. 2015-11-05 22:27:34 -08:00
README.md Add Link to VSCode extension 2016-09-29 12:22:57 -07:00
ThirdPartyNotices.txt Adding third party notices 2016-09-23 15:51:09 -07:00
TypeScript Indent.YAML-tmPreferences Initial commit. 2015-11-05 13:14:57 -08:00
TypeScript Indent.tmPreferences Initial commit. 2015-11-05 13:14:57 -08:00
TypeScript.YAML-tmLanguage Fix the modifier detection for fields and parameters 2016-10-11 12:30:14 -07:00
TypeScript.YAML-tmTheme Add support classes, functions, properties and constants 2016-09-23 10:39:47 -07:00
TypeScript.tmLanguage Fix the modifier detection for fields and parameters 2016-10-11 12:30:14 -07:00
TypeScript.tmTheme Add support classes, functions, properties and constants 2016-09-23 10:39:47 -07:00
TypeScriptReact.YAML-tmLanguage Removed unnecessary scope name 2016-10-04 11:19:27 -07:00
TypeScriptReact.YAML-tmTheme Update the theme file so that scope rename in 67954e4 is reflected 2016-10-04 11:31:32 -07:00
TypeScriptReact.tmLanguage Fix the modifier detection for fields and parameters 2016-10-11 12:30:14 -07:00
TypeScriptReact.tmTheme Update the theme file so that scope rename in 67954e4 is reflected 2016-10-04 11:31:32 -07:00
appveyor.yml Update approveryor.yml 2016-09-20 15:05:14 -07:00

README.md

TypeScript-TmLanguage

Build status

This repository contains TmLanguage files that are consumed by TypeScript editors and plugins such as Visual Studio Code, The TypeScript Sublime Plugin, Atom TypeScript, and possibly others.

Latest version of the grammer can be also found as a VSCode extension.

Contributing

The XML files are generated from the YAML files, so contributors should hand-modify the YAML files, and XML files should only be generated by running build script.

Build

Update the XML files from within the build folder

cd build
npm install         # Installs dependencies required for building
npm start           # Compiles & builds the XML files

Tests

Test are run from within the tests folder and depend on build to make sure XML files are upto date

cd build
npm install         # Installs dependencies required for building

cd ../tests
npm install         # Installs dependencies required for testing
npm test            # Compiles & runs tests