vscode workspace settings
This commit is contained in:
parent
feb6c7e2c9
commit
91a650079d
2 changed files with 43 additions and 0 deletions
6
apps/infoalloggi/.vscode/terminal.sh
vendored
Normal file
6
apps/infoalloggi/.vscode/terminal.sh
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
#!/bin/sh
|
||||
|
||||
wt --pos 40,653 nt --title "Infoalloggi" --tabColor "#eb4034" -d "E:\infoalloggi-monorepo\apps\infoalloggi" ';' \
|
||||
nt --title "Backend" --tabColor "#74f73b" -d "E:\infoalloggi-monorepo\apps\backend" ';' \
|
||||
nt --title "Stripe WHook" --tabColor "#000dff" -d "E:\infoalloggi-monorepo\apps\infoalloggi" ';' \
|
||||
focus-tab -t 0
|
||||
37
apps/infoalloggi/infoalloggi.code-workspace
Normal file
37
apps/infoalloggi/infoalloggi.code-workspace
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
{
|
||||
"folders": [
|
||||
{
|
||||
"path": "."
|
||||
},
|
||||
{
|
||||
"path": "../db/migrations"
|
||||
}
|
||||
],
|
||||
"settings": {
|
||||
"js/ts.tsdk.path": "node_modules\\typescript\\lib",
|
||||
"biome.lsp.trace.server": "verbose",
|
||||
"tinymist.fontPaths": ["${workspaceFolder}/typst/fonts"],
|
||||
"window.restoreWindows": "all",
|
||||
"window.newWindowDimensions": "inherit"
|
||||
},
|
||||
"tasks": {
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "Launch Project Terminals",
|
||||
"type": "shell",
|
||||
"command": ".vscode/terminal.sh",
|
||||
"args": [],
|
||||
"presentation": {
|
||||
"reveal": "silent",
|
||||
"panel": "new"
|
||||
},
|
||||
"group": "none",
|
||||
"runOptions": {
|
||||
"runOn": "folderOpen"
|
||||
},
|
||||
"problemMatcher": []
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue