eae5d8c807
These conflicts will be resolved in the following commits. We do it this way so that PR review is possible.
30 lines
779 B
JSON
30 lines
779 B
JSON
{
|
|
"name": "fsharp",
|
|
"displayName": "%displayName%",
|
|
"description": "%description%",
|
|
"version": "1.0.0",
|
|
"publisher": "vscode",
|
|
"license": "MIT",
|
|
"engines": { "vscode": "*" },
|
|
"scripts": {
|
|
"update-grammar": "node ../../build/npm/update-grammar.js ionide/ionide-fsgrammar grammars/fsharp.json ./syntaxes/fsharp.tmLanguage.json"
|
|
},
|
|
"contributes": {
|
|
"languages": [{
|
|
"id": "fsharp",
|
|
"extensions": [ ".fs", ".fsi", ".fsx", ".fsscript" ],
|
|
"aliases": [ "F#", "FSharp", "fsharp" ],
|
|
"configuration": "./language-configuration.json"
|
|
}],
|
|
"grammars": [{
|
|
"language": "fsharp",
|
|
"scopeName": "source.fsharp",
|
|
"path": "./syntaxes/fsharp.tmLanguage.json"
|
|
}],
|
|
"snippets": [{
|
|
"language": "fsharp",
|
|
"path": "./snippets/fsharp.code-snippets"
|
|
}]
|
|
}
|
|
}
|