This repository has been archived by the owner on Dec 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
134 lines (134 loc) · 3.37 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
{
"name": "ide-typescript",
"main": "./lib/main",
"version": "0.9.5",
"description": "TypeScript and JavaScript language support for Atom-IDE.",
"repository": "https://github.com/atom/ide-typescript",
"license": "MIT",
"engines": {
"atom": ">=1.21.0"
},
"configSchema": {
"diagnosticsEnabled": {
"type": "boolean",
"default": true,
"description": "Use the TypeScript language server to provide diagnostics and warnings."
},
"typeScriptServer": {
"title": "TypeScript server",
"type": "object",
"properties": {
"path": {
"title": "TypeScript server path",
"type": "string",
"default": "node_modules/typescript/lib/tsserver.js",
"description": "Path to a TypeScript `tsserver.js` the language server will use to process TypeScript. Defaults to the bundled version."
}
}
},
"javascriptSupport": {
"type": "boolean",
"title": "JavaScript support",
"default": true,
"description": "Use the TypeScript language server to also provide services for JavaScript."
},
"ignoreFlow": {
"type": "boolean",
"title": "Ignore Flow project folders",
"default": true,
"description": "Ignore project folders that contain a Flow `.flowconfig` file."
},
"autocompleteResultsFirst": {
"type": "boolean",
"title": "Show autocomplete results first",
"default": true,
"description": "Suggestions will be placed before the rest of autocomplete results (e.g. snippets etc). Requires restart to take effect."
},
"returnTypeInAutocomplete": {
"type": "string",
"default": "left",
"enum": [
{
"value": "left",
"description": "On their own to the left (like other languages)"
},
{
"value": "right",
"description": "Following parameters to the right (like source code)"
}
],
"description": "Where return types are shown in AutoComplete."
}
},
"dependencies": {
"atom-languageclient": "0.9.9",
"typescript": "~3.6.4",
"typescript-language-server": "~0.4.0"
},
"activationHooks": [
"source.ts:root-scope-used",
"source.tsx:root-scope-used",
"source.js:root-scope-used",
"source.js.jsx:root-scope-used"
],
"enhancedScopes": [
"source.ts",
"source.tsx",
"source.js",
"source.js.jsx"
],
"consumedServices": {
"console": {
"versions": {
"0.1.0": "consumeConsole"
}
},
"datatip": {
"versions": {
"0.1.0": "consumeDatatip"
}
},
"linter-indie": {
"versions": {
"2.0.0": "consumeLinterV2"
}
},
"signature-help": {
"versions": {
"0.1.0": "consumeSignatureHelp"
}
}
},
"providedServices": {
"autocomplete.provider": {
"versions": {
"2.0.0": "provideAutocomplete"
}
},
"code-actions": {
"versions": {
"0.1.0": "provideCodeActions"
}
},
"code-format.range": {
"versions": {
"0.1.0": "provideCodeFormat"
}
},
"definitions": {
"versions": {
"0.1.0": "provideDefinitions"
}
},
"find-references": {
"versions": {
"0.1.0": "provideFindReferences"
}
},
"outline-view": {
"versions": {
"0.1.0": "provideOutlines"
}
}
}
}