-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
126 lines (126 loc) · 3.91 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
{
"name": "coc-angular",
"description": "Editor services for Angular templates",
"version": "17.0.2",
"keywords": [
"coc.nvim",
"angular",
"multi-root ready"
],
"author": {
"name": "iamcco",
"email": "ooiss@qq.com"
},
"repository": {
"type": "git",
"url": "https://github.com/iamcco/coc-angular"
},
"engines": {
"coc": "^0.0.82"
},
"capabilities": {
"untrustedWorkspaces": {
"supported": true
},
"virtualWorkspaces": {
"supported": "limited",
"description": "The Language Server Protocol does not support remote file systems. Functionality is limited to syntax highlighting only."
}
},
"main": "./out/index.js",
"activationEvents": [
"workspaceContains:angular.json",
"workspaceContains:node_modules/@angular/core/core.d.ts"
],
"contributes": {
"commands": [
{
"command": "angular.restartNgServer",
"title": "Restart Angular Language server",
"category": "Angular"
},
{
"command": "angular.openLogFile",
"title": "Open Angular Server log",
"category": "Angular"
},
{
"command": "angular.getTemplateTcb",
"title": "View Template Typecheck Block",
"category": "Angular"
},
{
"command": "angular.goToComponentWithTemplateFile",
"title": "Go to component",
"category": "Angular"
},
{
"command": "angular.goToTemplateForComponent",
"title": "Go to template",
"category": "Angular"
}
],
"configuration": {
"title": "angular configuration",
"properties": {
"angular.trace.server": {
"type": "string",
"default": "off",
"enum": [
"off",
"messages",
"verbose"
],
"description": "enable angular language server trace log?"
},
"angular.log": {
"type": "string",
"enum": [
"off",
"terse",
"normal",
"verbose"
],
"default": "off",
"description": "Enables logging of the Angular server to a file. This log can be used to diagnose Angular Server issues. The log may contain file paths, source code, and other potentially sensitive information from your project."
},
"angular.enable-strict-mode-prompt": {
"type": "boolean",
"default": true,
"description": "Prompt to enable Strict Mode."
},
"angular.suggest.includeAutomaticOptionalChainCompletions": {
"type": "boolean",
"default": true,
"description": "Enable/disable showing completions on potentially undefined values that insert an optional chain call. Requires TS 3.7+, strict null checks to be enabled and the `legacy View Engine` option to be disabled."
},
"angular.suggest.includeCompletionsWithSnippetText": {
"type": "boolean",
"default": true,
"description": "Enable/disable snippet completions from Angular language server. Requires using TypeScript 4.3+ in the workspace and the `legacy View Engine` option to be disabled."
},
"angular.forceStrictTemplates": {
"type": "boolean",
"default": false,
"markdownDescription": "Enabling this option will force the language service to use [strictTemplates](https://angular.io/guide/angular-compiler-options#stricttemplates) and ignore the user settings in the `tsconfig.json`."
}
}
}
},
"scripts": {
"build": "rm -rf ./out/ && webpack",
"watch": "tsc -w -p ./"
},
"devDependencies": {
"@types/node": "^20.9.0",
"coc.nvim": "^0.0.83-next.9",
"ts-loader": "^9.5.0",
"vscode-languageserver-protocol": "^3.17.5",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@angular/language-server": "17.0.2",
"typescript": "5.2.2"
}
}