├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── grammars ├── TypeScript.json ├── TypeScriptReact.json ├── tree-sitter-flow.cson ├── tree-sitter-tsx.cson └── tree-sitter-typescript.cson ├── lib └── main.js ├── package.json ├── settings ├── TypeScript.cson └── TypeScriptReact.cson └── snippets └── language-typescript.cson /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-typescript/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-typescript/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-typescript/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-typescript/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-typescript/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-typescript/HEAD/README.md -------------------------------------------------------------------------------- /grammars/TypeScript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-typescript/HEAD/grammars/TypeScript.json -------------------------------------------------------------------------------- /grammars/TypeScriptReact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-typescript/HEAD/grammars/TypeScriptReact.json -------------------------------------------------------------------------------- /grammars/tree-sitter-flow.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-typescript/HEAD/grammars/tree-sitter-flow.cson -------------------------------------------------------------------------------- /grammars/tree-sitter-tsx.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-typescript/HEAD/grammars/tree-sitter-tsx.cson -------------------------------------------------------------------------------- /grammars/tree-sitter-typescript.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-typescript/HEAD/grammars/tree-sitter-typescript.cson -------------------------------------------------------------------------------- /lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-typescript/HEAD/lib/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-typescript/HEAD/package.json -------------------------------------------------------------------------------- /settings/TypeScript.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-typescript/HEAD/settings/TypeScript.cson -------------------------------------------------------------------------------- /settings/TypeScriptReact.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-typescript/HEAD/settings/TypeScriptReact.cson -------------------------------------------------------------------------------- /snippets/language-typescript.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-typescript/HEAD/snippets/language-typescript.cson --------------------------------------------------------------------------------