-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.14 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
{
"name": "typesctipt-importer-2",
"description": "Reincarnation of Typescript Importer",
"author": "Ivan Trusov",
"license": "MIT",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "https://github.com/ivan-trusov/typescript-importer-2"
},
"publisher": "IvanTrusov",
"engines": {
"vscode": "^1.63.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:typescript",
"onLanguage:javascript"
],
"main": "./client/out/extension.js",
"contributes": {
"configuration": {
"type": "object",
"title": "StiTSImporter Configuration",
"properties": {
"StiTSImporter.showNamespaceOnImports": {
"type": "boolean",
"default": true,
"description": "When set to true, imports will show the namespace in parenthesis"
},
"StiTSImporter.TSConfigFrameworkName": {
"type": "string",
"default": "frameworks",
"description": "The node within TSConfig that references depenant frameworks that we have access to. Any framework listed in here will provide code hints. Requires Reload to take affect"
},
"StiTSImporter.IgnoreListedFolders": {
"type": "string",
"default": "./, .scripts/",
"description": "Comma separated string. These folders will be excluded from code hints. This is useful if you have a mix of CommonJS and Namespaces"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"lint": "eslint ./client/src ./server/src --ext .ts,.tsx",
"postinstall": "cd client && npm install && cd ../server && npm install && cd .."
},
"devDependencies": {
"@types/mocha": "^8.2.2",
"@types/node": "^12.12.0",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"mocha": "^8.3.2",
"typescript": "^4.4.3",
"vsce": "^2.5.1"
}
}