forked from streetsidesoftware/vscode-spell-checker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Spell Checker.code-workspace
79 lines (79 loc) · 2.36 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
{
"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": "Settings Viewer",
"path": "packages/_settingsViewer"
},
{
"name": "Settings Viewer Next",
"path": "packages/_settingsViewerNext"
},
{
"name": "Integration Tests",
"path": "packages/_integrationTests"
},
{
"name": "Utils",
"path": "packages/__utils"
},
{
"name": "Tools",
"path": "packages/___buildTools"
},
{
"name": "Docs",
"path": "docs"
}
],
"settings": {
"cSpell.import": ["${workspaceFolder:Spell Checker Root}/cspell.json"],
"cSpell.customDictionaries": { "cspell-words": true },
"typescript.tsdk": "Spell Checker Root/node_modules/typescript/lib",
"svg.preview.background": "black",
"editor.formatOnSave": true,
"files.eol": "\n"
},
"launch": {
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Test: Jest current-file",
"program": "${fileWorkspaceFolder}/../../node_modules/jest/bin/jest",
"cwd": "${fileDirname}",
"args": ["--runInBand", "${fileBasename}"],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"disableOptimisticBPs": true
},
{
"type": "node",
"request": "launch",
"name": "Test: Jest Entire Folder",
"program": "${fileWorkspaceFolder}/../../node_modules/jest/bin/jest",
"cwd": "${fileWorkspaceFolder}",
"args": ["--runInBand"],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"disableOptimisticBPs": true
}
],
"compounds": []
}
}