TextMate grammar files for TypeScript for VS Code, Sublime Text, and Atom.
Перейти к файлу
Sheetal Nandi fd25d9aeda Generated baselines with clean file text (without marker)
This makes it easier to copy paste the file text in the editor when verifying
2016-09-21 12:39:50 -07:00
.vscode Remove typings folder, replace with tsd.json 2015-11-20 12:32:23 -08:00
build Use @types instead of typings 2016-09-20 15:53:04 -07:00
tests Generated baselines with clean file text (without marker) 2016-09-21 12:39:50 -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 Update read me to reflect change in the work flow 2016-09-20 14:03:01 -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 Handle type alias declaration spanning multiple lines 2016-09-19 13:55:51 -07:00
TypeScript.YAML-tmTheme VS Theme generation for TypeScript 2016-09-20 14:29:15 -07:00
TypeScript.tmLanguage Merge branch 'master' into functionTypeEnhancement 2016-09-20 16:09:51 -07:00
TypeScript.tmTheme VS Theme generation for TypeScript 2016-09-20 14:29:15 -07:00
TypeScriptReact.YAML-tmLanguage Generate TypeScriptReact grammar 2016-09-20 13:58:52 -07:00
TypeScriptReact.YAML-tmTheme Generate TypeScriptReact theme 2016-09-20 15:00:43 -07:00
TypeScriptReact.tmLanguage Merge branch 'master' into functionTypeEnhancement 2016-09-20 16:09:51 -07:00
TypeScriptReact.tmTheme Generate TypeScriptReact theme 2016-09-20 15:00:43 -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.

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