TextMate grammar files for TypeScript for VS Code, Sublime Text, and Atom.
Перейти к файлу
Sheetal Nandi d81c7e3854 Scope out enum members explicitly so as to avoid using support variable names for them
Fixes #322
2016-10-20 09:12:26 -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 Scope out enum members explicitly so as to avoid using support variable names for them 2016-10-20 09:12:26 -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 Updated the license to MIT 2016-10-17 12:32:50 -07: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 Scope out enum members explicitly so as to avoid using support variable names for them 2016-10-20 09:12:26 -07:00
TypeScript.YAML-tmTheme Add the expression scope to the keyword.operator to be colored as keyword 2016-10-18 10:38:22 -07:00
TypeScript.tmLanguage Scope out enum members explicitly so as to avoid using support variable names for them 2016-10-20 09:12:26 -07:00
TypeScript.tmTheme Add the expression scope to the keyword.operator to be colored as keyword 2016-10-18 10:38:22 -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 Scope out enum members explicitly so as to avoid using support variable names for them 2016-10-20 09:12:26 -07:00
TypeScriptReact.tmTheme Add the expression scope to the keyword.operator to be colored as keyword 2016-10-18 10:38:22 -07:00
appveyor.yml Update approveryor.yml 2016-09-20 15:05:14 -07:00
issue_template.md Add issue_template.md 2016-10-12 09:30:46 -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