mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-13 17:22:15 -05:00
* Initial 1.19 xcopy * Fix yarn build * Fix numerous build breaks * Next batch of build break fixes * More build break fixes * Runtime breaks * Additional post merge fixes * Fix windows setup file * Fix test failures. * Update license header blocks to refer to source eula
26 lines
666 B
JSON
26 lines
666 B
JSON
{
|
|
"name": "bat",
|
|
"version": "0.1.0",
|
|
"publisher": "vscode",
|
|
"engines": { "vscode": "*" },
|
|
"scripts": {
|
|
"update-grammar": "node ../../build/npm/update-grammar.js mmims/language-batchfile grammars/batchfile.cson ./syntaxes/batchfile.tmLanguage.json"
|
|
},
|
|
"contributes": {
|
|
"languages": [{
|
|
"id": "bat",
|
|
"extensions": [ ".bat", ".cmd"],
|
|
"aliases": [ "Batch", "bat" ],
|
|
"configuration": "./language-configuration.json"
|
|
}],
|
|
"grammars": [{
|
|
"language": "bat",
|
|
"scopeName": "source.batchfile",
|
|
"path": "./syntaxes/batchfile.tmLanguage.json"
|
|
}],
|
|
"snippets": [{
|
|
"language": "bat",
|
|
"path": "./snippets/batchfile.snippets.json"
|
|
}]
|
|
}
|
|
} |