-
-
Notifications
You must be signed in to change notification settings - Fork 128
/
Spell Checker.code-workspace
106 lines (105 loc) · 3.7 KB
/
Spell Checker.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
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
{
"folders": [
{
"name": "Spell Checker Root",
"path": "."
},
{
"name": "Client",
"path": "packages/client"
},
{
"name": "Server - Spell Checker",
"path": "packages/_server"
},
{
"name": "Server - Pattern Matcher",
"path": "packages/_serverPatternMatcher"
},
{
"name": "Integration Tests",
"path": "packages/_integrationTests"
},
{
"name": "Utils",
"path": "packages/__utils"
},
{
"name": "Tools",
"path": "tools/build-tools"
},
{ "path": "packages/utils-disposables" },
{ "path": "packages/utils-logger" },
{ "path": "packages/json-rpc-api" },
{ "path": "packages/webview-api" },
{ "path": "packages/webview-rpc" },
{ "path": "packages/webview-ui" },
{ "name": "Docs", "path": "docs" },
{ "path": "website" }
],
"settings": {
"cSpell.import": ["${workspaceFolder:Spell Checker Root}/cspell.config.yaml"],
"cSpell.customDictionaries": { "cspell-words": true },
"typescript.tsdk": "Spell Checker Root/node_modules/typescript/lib",
"editor.formatOnSave": true,
"files.eol": "\n",
"cSpell.flagWords": [],
"cSpell.enabledFileTypes": { "github-actions-workflow": true },
"svg.preview.background": "dark-transparent"
},
"launch": {
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Test: Jest current-file",
"program": "${workspaceFolder:Client}/../../node_modules/jest/bin/jest",
"cwd": "${fileDirname}",
"args": ["--runInBand", "${fileBasename}"],
"env": { "NODE_OPTIONS": "--experimental-vm-modules" },
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
},
{
"type": "node",
"request": "launch",
"name": "Test: Jest Entire Folder",
"program": "${workspaceFolder:Client}/../../node_modules/jest/bin/jest",
"cwd": "${fileWorkspaceFolder}",
"args": ["--runInBand"],
"env": { "NODE_OPTIONS": "--experimental-vm-modules" },
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
},
{
"type": "node",
"request": "launch",
"name": "Test: Vitest current-file",
"autoAttachChildProcesses": true,
"program": "${workspaceFolder:Client}/../../node_modules/vitest/vitest.mjs",
"cwd": "${fileWorkspaceFolder}",
"args": ["run", "--test-timeout=600000", "${relativeFile}"],
"console": "integratedTerminal"
},
{
"type": "node",
"request": "launch",
"name": "Test: Vitest Entire Folder",
"autoAttachChildProcesses": true,
"program": "${workspaceFolder:Client}/../../node_modules/vitest/vitest.mjs",
"cwd": "${fileWorkspaceFolder}",
"args": ["run", "--test-timeout=600000"],
"console": "integratedTerminal"
}
],
"compounds": []
},
"extensions": {
"recommendations": [
"streetsidesoftware.code-spell-checker",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"svelte.svelte-vscode"
]
}
}