Files
vscode/extensions/toml/package.json
Sardorbek 0469b0089e add toml fixes: #51704 (#59089)
* add toml fixes: #51704

* add thirdparty notices
2018-09-21 15:13:38 -07:00

25 lines
621 B
JSON

{
"name": "toml",
"displayName": "%displayName%",
"description": "%description%",
"version": "1.0.0",
"publisher": "vscode",
"engines": { "vscode": "*" },
"scripts": {
"update-grammar": "node ../../build/npm/update-grammar.js textmate/toml.tmbundle Syntaxes/TOML.tmLanguage ./syntaxes/toml.tmLanguage.json"
},
"contributes": {
"languages": [{
"id": "toml",
"aliases": ["Toml", "toml"],
"extensions": [".toml"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "toml",
"scopeName": "source.toml",
"path": "./syntaxes/toml.tmLanguage.json"
}]
}
}