vscode/extensions/powershell/package.json
David Wilson 6d3609f90b Add more extensions to built-in PowerShell support
This change adds the .pssc and .psrc file extensions to the built-in
PowerShell support.
2015-11-19 14:05:46 -08:00

19 lines
488 B
JSON

{
"name": "powershell",
"version": "0.1.0",
"publisher": "vscode",
"engines": { "vscode": "*" },
"contributes": {
"languages": [{
"id": "powershell",
"extensions": [ ".ps1", ".psm1", ".psd1", ".pssc", ".psrc" ],
"aliases": [ "PowerShell", "powershell", "ps", "ps1" ],
"configuration": "./powershell.configuration.json"
}],
"grammars": [{
"language": "powershell",
"scopeName": "source.powershell",
"path": "./syntaxes/PowershellSyntax.tmLanguage"
}]
}
}