-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 846 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "t4-syntax",
"displayName": "T4 syntax",
"description": "Syntax highlighting for T4 text templates.",
"version": "0.1.0",
"publisher": "philippdrebes",
"engines": {
"vscode": "^1.19.0"
},
"categories": [
"Languages"
],
"contributes": {
"languages": [
{
"id": "t4",
"aliases": [
"T4 Text Template",
"t4"
],
"extensions": [
".tt"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "t4",
"scopeName": "source.tt",
"path": "./syntaxes/t4.tmLanguage.json"
}
]
}
}