-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTinyBits.code-workspace
More file actions
85 lines (83 loc) · 3.04 KB
/
TinyBits.code-workspace
File metadata and controls
85 lines (83 loc) · 3.04 KB
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
{ // 2025-11-28
"folders": [
{
"path": "."
}
],
"settings": {
"files.associations": {
"**/vscode/**/*.json": "jsonc",
"**/*.json": "jsonc",
"**/vscode/snippets/*.json": "snippets",
// "*.svg": "xml"
},
"workbench.editorAssociations": {
// "*.copilotmd": "vscode.markdown.preview.editor",
// "*.svg": "imagePreview.previewEditor",
// "*.svg": "default",
},
"explorer.fileNesting.patterns": {
"*.ts": "${capture}.js",
"*.js": "${capture}.js.map, ${capture}.min.js, ${capture}.d.ts",
"*.ps1": "${capture}.psx.ps1",
"*.jsx": "${capture}.js",
"*.tsx": "${capture}.ts",
"tsconfig.json": "tsconfig.*.json",
"package.json": "package-lock.json, yarn.lock, pnpm-lock.yaml, bun.lockb, bun.lock",
"*.css": "${capture}.example.*",
},
"json.schemas": [
/* see docs: https://code.visualstudio.com/docs/languages/json#_use-rich-formatting-in-hovers
schema name came from here <https://github.com/microsoft/vscode/blob/e5e9a6556e8dd4f5c60074b0a9466be4b490ac29/src/vs/workbench/contrib/snippets/browser/snippets.contribution.ts#L100C1-L100C1>
*/
{
"url": "vscode://schemas/global-snippets",
"fileMatch": [ "code-snippets" ],
},
{
"url": "vscode://schemas/global-snippets",
"fileMatch": [ "*/vscode/snippets/*.json" ],
},
{
"url": "vscode://schemas/settings/user",
"fileMatch": [ "*/vscode/settings.json/*.json" ],
},
{
"url": "vscode://schemas/keybindings",
"fileMatch": [ "*/vscode/keybindings.json/*.json" ],
},
],
"livePreview.autoRefreshPreview": "On All Changes in Editor",
// "livePreview.defaultPreviewPath": ""
"livePreview.previewDebounceDelay": 20,
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "TinyBits ⁞ Pwsh ⁞ 🚀 Build Themes.ps1",
"type": "PowerShell",
"request": "launch",
"script": "${workspaceFolder}/color/Build.Themes.ps1",
"cwd": "${workspaceFolder}",
"presentation": {
"hidden": false,
"group": "0",
"order": 1
}
},
{
"type": "chrome",
"name": "TinyBits ⁞ Web ⁞ 🐛 Attach Debug to External Preview",
"request": "launch",
"url": "http://127.0.0.1:3002/web/css/misc/compare-box-gradients.example.html",
"presentation": {
"hidden": false,
"group": "0",
"order": 2
}
}
],
"compounds": []
}
}