-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension.json
47 lines (42 loc) · 1019 Bytes
/
extension.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
{
"identifier": "co.ketch.TailwindCSSLSP",
"name": "TailwindCSS LSP",
"organization": "Alex Ketch",
"description": "Lorem ipsum, dolor sit amet.",
"version": "1.0",
"categories": ["completions", "issues", "sidebars", "languages"],
"main": "main.js",
"entitlements": {
"process": true,
"filesystem": "read"
},
"activationEvents": [
"onLanguage:postcss",
"onLanguage:css",
"onLanguage:html",
"onLanguage:javascript",
"onLanguage:javascriptreact",
"onLanguage:typescript",
"onLanguage:typescriptreact",
"onLanguage:jsx",
"onLanguage:tsx",
"onWorkspaceContains:tailwind.config.js",
"onWorkspaceContains:tailwind.config.cjs"
],
"config": [
{
"key": "example.language-server-path",
"title": "Language Server Path",
"type": "path",
"placeholder": "/usr/local/bin/example"
}
],
"commands": {
"extensions": [
{
"title": "Restart Tailwind LSP",
"command": "restart"
}
]
}
}