mirror of
https://github.com/michael-andreuzza/sequoia-obsidian.git
synced 2026-07-22 04:40:30 +00:00
49 lines
1.3 KiB
JSON
49 lines
1.3 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"inputs": [
|
|
{
|
|
"id": "sequoiaExtensionRoot",
|
|
"type": "pickString",
|
|
"description": "Folder containing Sequoia VS Code extension (package.json)",
|
|
"options": [
|
|
"${workspaceFolder}/../../sequoia",
|
|
"${workspaceFolder}/../sequoia"
|
|
],
|
|
"default": "${workspaceFolder}/../../sequoia"
|
|
},
|
|
{
|
|
"id": "sequoiaDebugTheme",
|
|
"type": "pickString",
|
|
"description": "Sequoia theme to preview",
|
|
"options": [
|
|
"Sequoia Moonlight Dark",
|
|
"Sequoia Moonlight Light",
|
|
"Sequoia Monochrome Dark",
|
|
"Sequoia Monochrome Light",
|
|
"Sequoia Retro Dark",
|
|
"Sequoia Retro Light"
|
|
],
|
|
"default": "Sequoia Moonlight Dark"
|
|
}
|
|
],
|
|
"configurations": [
|
|
{
|
|
"name": "Preview Sequoia theme in VS Code",
|
|
"type": "extensionHost",
|
|
"request": "launch",
|
|
"runtimeExecutable": "${execPath}",
|
|
"preLaunchTask": "sequoia: set debug theme",
|
|
"args": [
|
|
"--extensionDevelopmentPath=${input:sequoiaExtensionRoot}",
|
|
"--user-data-dir=${workspaceFolder}/.vscode-debug/user-data"
|
|
],
|
|
"env": {
|
|
"SEQUOIA_DEBUG_THEME": "${input:sequoiaDebugTheme}"
|
|
},
|
|
"settings": {
|
|
"window.autoDetectColorScheme": false,
|
|
"workbench.colorTheme": "${input:sequoiaDebugTheme}"
|
|
}
|
|
}
|
|
]
|
|
}
|