-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
138 lines (138 loc) · 3.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
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
{
"name": "tsimporter",
"displayName": "TypeScript Importer",
"description": "Automatically searches for TypeScript definitions in workspace files and provides all known symbols as completion item to allow code completion.",
"version": "2.0.1",
"publisher": "pmneo",
"engines": {
"vscode": "^1.5.3"
},
"galleryBanner": {
"color": "#2d4794",
"theme": "dark"
},
"keywords": [
"typescript",
"import",
"tsi",
"auto",
"require"
],
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:typescript",
"onLanguage:typescriptreact",
"onLanguage:vue"
],
"main": "./out/TypeScriptImporter",
"contributes": {
"commands": [
{
"command": "tsimporter.reindex",
"title": "Reindex TypeScript Importer",
"category": "TypeScript Importer"
},
{
"command": "tsimporter.dumpIndex",
"title": "Dumps index to a new document",
"category": "TypeScript Importer"
},
{
"command": "tsimporter.addImport",
"title": "Add Import",
"category": "TypeScript Importer"
},
{
"command": "tsimporter.openSymbol",
"title": "Open Symbol",
"category": "TypeScript Importer"
}
],
"configuration": {
"type": "object",
"title": "TypeScript Importer configuration",
"properties": {
"tsimporter.filesToScan": {
"type": "array",
"default": [
"**/*.ts",
"**/*.tsx",
"**/*.vue"
],
"description": "Glob for files to watch and scan, e.g ./src/** ./src/app/**/*.ts. Defaults to [**/*.ts,**/*.tsx]"
},
"tsimporter.filesToExclude": {
"type": "array",
"default": [],
"description": "Glob for files to exclude from watch and scan, e.g ./out/**. Defaults to nothing"
},
"tsimporter.disabled": {
"type": "boolean",
"default": false,
"description": "Extension is disabled when set to true"
},
"tsimporter.showNotifications": {
"type": "boolean",
"default": false,
"description": "Disables the extension"
},
"tsimporter.noStatusBar": {
"type": "boolean",
"default": false,
"description": "Disables the status bar of this extension"
},
"tsimporter.doubleQuotes": {
"type": "boolean",
"default": false,
"description": "Specifies wether to use double quotes"
},
"tsimporter.spaceBetweenBraces": {
"type": "boolean",
"default": true,
"description": "Insert spaces between the import braces. ( import {test} from 'test' vs. import { test } from 'test' )"
},
"tsimporter.removeFileExtensions": {
"type": "string",
"default": ".d.ts,.ts,.tsx",
"description": "File Extensions to remove. default is '.d.ts,.ts,.tsx'"
},
"tsimporter.lowImportance": {
"type": "boolean",
"default": false,
"description": "If true, the code completion items will be sorted back to the build in completion items"
},
"tsimporter.emitSemicolon": {
"type": "boolean",
"default": true,
"description": "If false, no semicolon will be written"
},
"tsimporter.tsconfigName": {
"type": "string",
"default": "tsconfig.json",
"description": "tsconfig name to search for"
},
"tsimporter.preferRelative": {
"type": "boolean",
"default": false,
"description": "When true shorter relative imports will be be prefered instead of absolute imports"
}
}
}
},
"icon": "icon.png",
"homepage": "https://github.com/pmneo/ts-importer",
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"vsce": "vsce"
},
"devDependencies": {
"typescript": "^3.3.4000",
"vsce": "1.58.0",
"vscode": "^1.1.32"
},
"dependencies": {}
}