Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/fsharp/package.json
3290 views
1
{
2
"name": "fsharp",
3
"displayName": "%displayName%",
4
"description": "%description%",
5
"version": "1.0.0",
6
"publisher": "vscode",
7
"license": "MIT",
8
"engines": {
9
"vscode": "*"
10
},
11
"scripts": {
12
"update-grammar": "node ../node_modules/vscode-grammar-updater/bin ionide/ionide-fsgrammar grammars/fsharp.json ./syntaxes/fsharp.tmLanguage.json"
13
},
14
"categories": ["Programming Languages"],
15
"contributes": {
16
"languages": [
17
{
18
"id": "fsharp",
19
"extensions": [
20
".fs",
21
".fsi",
22
".fsx",
23
".fsscript"
24
],
25
"aliases": [
26
"F#",
27
"FSharp",
28
"fsharp"
29
],
30
"configuration": "./language-configuration.json"
31
}
32
],
33
"grammars": [
34
{
35
"language": "fsharp",
36
"scopeName": "source.fsharp",
37
"path": "./syntaxes/fsharp.tmLanguage.json"
38
}
39
],
40
"snippets": [
41
{
42
"language": "fsharp",
43
"path": "./snippets/fsharp.code-snippets"
44
}
45
],
46
"configurationDefaults": {
47
"[fsharp]": {
48
"diffEditor.ignoreTrimWhitespace": false
49
}
50
}
51
},
52
"repository": {
53
"type": "git",
54
"url": "https://github.com/microsoft/vscode.git"
55
}
56
}
57
58