-
-
Notifications
You must be signed in to change notification settings - Fork 306
/
vscode-sqltools.code-workspace
70 lines (70 loc) · 1.86 KB
/
vscode-sqltools.code-workspace
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
{
"folders": [
{ "path": "./packages/base-driver" },
{ "path": "./packages/driver.mssql" },
{ "path": "./packages/driver.mysql" },
{ "path": "./packages/driver.pg" },
{ "path": "./packages/driver.sqlite" },
{ "path": "./packages/extension" },
{ "path": "./packages/log" },
{ "path": "./packages/formatter" },
{ "path": "./packages/language-server" },
{ "path": "./packages/plugins" },
{ "path": "./packages/types" },
{ "path": "./packages/util" },
{ "path": "./packages/vscode" },
{ "path": "./build-tools" },
{ "path": "./docs" },
{ "path": "./" }
],
"extensions": {},
"settings": {
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/.vscode-test": true,
"**/.parcel-cache": true,
"**/dist": false
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true,
"**/.vscode-test": true,
"**/.parcel-cache": true,
"**/dist/**": true
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/.vscode-test": true,
"**/.parcel-cache": true,
"**/dist": true
},
"typescript.tsdk": "vscode-sqltools/node_modules/typescript/lib",
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[typescriptreact]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
}
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "Start dev:watch",
"type": "shell",
"isBackground": true,
"options": {
"cwd": "${workspaceFolder:docs}/../"
},
"command": "yarn run dev:watch",
"problemMatcher": []
}
]
}
}