Boilerplate generator and deno tasks for monorepo

This commit is contained in:
Emma
2023-05-01 20:28:18 -06:00
parent a367562ba0
commit a910783882
36 changed files with 1164 additions and 47 deletions

25
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,25 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"request": "launch",
"name": "Launch Program",
"type": "node",
"program": "${workspaceFolder}/startDev.ts",
"cwd": "${workspaceFolder}",
"runtimeExecutable": "/home/ltwilhelm/.deno/bin/deno",
"runtimeArgs": [
"run",
"--unstable",
"--config",
"./deno.jsonc",
"--inspect-wait",
"--allow-all"
],
"attachSimplePort": 9229
}
]
}

37
.vscode/settings.json vendored
View File

@@ -1,24 +1,25 @@
{
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#c3bc9e",
"activityBar.background": "#c3bc9e",
"activityBar.foreground": "#15202b",
"activityBar.inactiveForeground": "#15202b99",
"activityBarBadge.background": "#558a80",
"activityBar.activeBackground": "#a210bb",
"activityBar.background": "#a210bb",
"activityBar.foreground": "#e7e7e7",
"activityBar.inactiveForeground": "#e7e7e799",
"activityBarBadge.background": "#3b3305",
"activityBarBadge.foreground": "#e7e7e7",
"commandCenter.border": "#15202b99",
"sash.hoverBorder": "#c3bc9e",
"statusBar.background": "#afa67f",
"statusBar.foreground": "#15202b",
"statusBarItem.hoverBackground": "#9a9061",
"statusBarItem.remoteBackground": "#afa67f",
"statusBarItem.remoteForeground": "#15202b",
"titleBar.activeBackground": "#afa67f",
"titleBar.activeForeground": "#15202b",
"titleBar.inactiveBackground": "#afa67f99",
"titleBar.inactiveForeground": "#15202b99"
"commandCenter.border": "#e7e7e799",
"sash.hoverBorder": "#a210bb",
"statusBar.background": "#790c8c",
"statusBar.foreground": "#e7e7e7",
"statusBarItem.hoverBackground": "#a210bb",
"statusBarItem.remoteBackground": "#790c8c",
"statusBarItem.remoteForeground": "#e7e7e7",
"titleBar.activeBackground": "#790c8c",
"titleBar.activeForeground": "#e7e7e7",
"titleBar.inactiveBackground": "#790c8c99",
"titleBar.inactiveForeground": "#e7e7e799"
},
"peacock.remoteColor": "#afa67f",
"peacock.remoteColor": "#790c8c",
"deno.enable": true,
"deno.unstable": true
"deno.unstable": true,
"deno.config": "./deno.jsonc"
}