Remove silly dirs

This commit is contained in:
Fergal Moran
2024-09-13 17:17:20 +01:00
parent 258fb1412c
commit dc9fd41949
3 changed files with 3 additions and 56 deletions

4
.gitignore vendored
View File

@@ -43,4 +43,6 @@ yarn-error.log*
*.tsbuildinfo
# idea files
.idea
.idea.env
.idea/
.vscode

51
.vscode/launch.json vendored
View File

@@ -1,51 +0,0 @@
{
// 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": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/src/server/auth.ts",
"outFiles": [
"${workspaceFolder}/**/*.js"
]
},
{
"name": "Next.js: debug server-side",
"type": "node-terminal",
"request": "launch",
"command": "npm run dev"
},
{
"name": "Next.js: debug client-side",
"type": "chrome",
"request": "launch",
"url": "http://localhost:3000"
},
{
"name": "Next.js: debug full stack",
"type": "node",
"request": "launch",
"program": "${workspaceFolder}/node_modules/.bin/next",
"runtimeArgs": [
"--inspect"
],
"skipFiles": [
"<node_internals>/**"
],
"serverReadyAction": {
"action": "debugWithEdge",
"killOnServerStop": true,
"pattern": "- Local:.+(https?://.+)",
"uriFormat": "%s",
"webRoot": "${workspaceFolder}"
}
}
]
}

View File

@@ -1,4 +0,0 @@
{
// "workbench.colorTheme": "Tinacious Design (High Contrast)"
"workbench.colorTheme": "Tinacious Design (High Contrast)",
}