This repository has been archived by the owner on Sep 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
143 lines (143 loc) · 3.62 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "haxe",
"displayName": "Legacy Haxe 3.2.1",
"description": "Haxe Language Extension for Haxe 3.2.1 (and maybe earlier)",
"version": "0.1.1",
"publisher": "haxedevs",
"author": {
"name": "Patrick Le Clec'h & Jeff Ward & Dan Korostelev"
},
"repository": {
"type": "git",
"url": "https://github.com/jcward/vscode-haxe"
},
"galleryBanner": {
"color": "#F68712"
},
"icon": "haxe-logo.png",
"engines": {
"vscode": "^0.10.1"
},
"categories": [
"Languages"
],
"activationEvents": [
"onLanguage:haxe",
"onLanguage:hxml",
"workspaceContains:build.hxml",
"workspaceContains:project.hxml"
],
"main": "./haxe.js",
"contributes": {
"debuggers": [
{
"type": "haxe",
"label": "haxe",
"enableBreakpointsFor": {
"languageIds": [
"haxe"
]
}
}
],
"languages": [
{
"id": "haxe",
"aliases": [
"Haxe",
"haxe"
],
"extensions": [
".hx",
".hxsl",
".hscript"
],
"configuration": "./haxe.configuration.json"
},
{
"id": "hxml",
"aliases": [
"HXML",
"hxml"
],
"extensions": [
".hxml"
],
"configuration": "./hxml.configuration.json"
}
],
"grammars": [
{
"language": "haxe",
"scopeName": "source.haxe",
"path": "./syntaxes/haxe.tmLanguage"
},
{
"language": "hxml",
"scopeName": "source.hxml",
"path": "./syntaxes/hxml.tmLanguage"
}
],
"configuration": {
"type": "object",
"title": "Haxe configuration",
"properties": {
"haxe.haxePath": {
"type": "string",
"default": "",
"description": "Where to find haxe executable. If not set must be in your global path"
},
"haxe.haxelibPath": {
"type": "string",
"default": "",
"description": "Where to find haxelib executable. If not set must be in your global path"
},
"haxe.haxeDefaultBuildFile": {
"type": "string",
"default": "build.hxml",
"description": "Name of your default build hxml file"
},
"haxe.haxeServerHost": {
"type": "string",
"default": "127.0.0.1",
"description": "Address of the haxe server"
},
"haxe.haxeServerPort": {
"type": "integer",
"default": 6000,
"description": "Port number of the haxe server"
},
"haxe.haxeDiagnoseOnSave": {
"type": "boolean",
"default": true,
"description": "Validate project when a file is saved"
},
"haxe.haxeDiagnosticDelay": {
"type": "integer",
"default": 2000,
"description": "Time (in ms) after we can launch a file validation"
},
"haxe.haxeCacheHaxelib": {
"type": "boolean",
"default": true,
"description": "If true the -lib will be cached into internal build file. It will be refreshed when real hxml file change"
},
"haxe.haxeVSCodeBuildFile": {
"type": "string",
"default": "vscode-project.hxml",
"description": "File that will be used internally(will be overwritten when the real hxml file changed) for compile/build/..."
},
"haxe.haxeTmpDirectory": {
"type": "string",
"default": "auto",
"description": "if set to auto or other directory a temp directory will be used and no change will be made to your source file (unless you saved it). In mode auto will try to use the OS temp directory. !!!Do not use any of your source directory as a temp one as file maybe deleted!!! For performance using a ramdisk is preferable"
},
"haxe.haxeUseTmpAsWorkingDirectory": {
"type": "boolean",
"default": false,
"description": "If set and a tmp directory also specified, the tmp directory will be used as the working directory"
}
}
}
}
}