-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
executable file
·70 lines (70 loc) · 1.66 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
{
"name": "vscode-type-coverage",
"displayName": "type-coverage",
"description": "VSCode plugin for type-coverage.",
"version": "2.18.2",
"author": "York Yao",
"publisher": "york-yao",
"license": "MIT",
"homepage": "https://github.com/plantain-00/type-coverage",
"repository": {
"type": "git",
"url": "https://github.com/plantain-00/type-coverage.git"
},
"bugs": {
"url": "https://github.com/plantain-00/type-coverage/issues"
},
"categories": [
"Linters"
],
"engines": {
"vscode": "^1.28.0"
},
"main": "./dist/index",
"dependencies": {
"ts-plugin-type-coverage": "^2.18.2"
},
"devDependencies": {
"typescript": "5.6.3"
},
"keywords": [
"type",
"coverage"
],
"activationEvents": [
"onLanguage:typescript",
"onLanguage:typescriptreact",
"onLanguage:javascript",
"onLanguage:javascriptreact"
],
"contributes": {
"typescriptServerPlugins": [
{
"name": "ts-plugin-type-coverage",
"enableForWorkspaceTypeScriptVersions": true
}
],
"configuration": {
"type": "object",
"title": "Type Coverage",
"properties": {
"typeCoverage.strict": {
"type": "boolean",
"description": "strict mode."
},
"typeCoverage.ignoreCatch": {
"type": "boolean",
"description": "ignore catch."
},
"typeCoverage.jsEnable": {
"type": "boolean",
"description": "validate javascript file."
},
"typeCoverage.ignoreUnread": {
"type": "boolean",
"description": "allow writes to variables with implicit any types"
}
}
}
}
}