Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin' into renovate/lock-file-mainten…
Browse files Browse the repository at this point in the history
…ance
  • Loading branch information
edwinhern committed Oct 2, 2024
2 parents 9536327 + 9712615 commit e746c74
Show file tree
Hide file tree
Showing 5 changed files with 282 additions and 262 deletions.
30 changes: 19 additions & 11 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,26 @@
{
"name": "tsx",
"type": "node",
"request": "launch",
"program": "${workspaceFolder}/src/index.ts",
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/tsx",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"skipFiles": ["<node_internals>/**", "${workspaceFolder}/node_modules/**"],
"version": "0.2.0",
"configurations": [
{
"command": "npm start",
"name": "Run npm start",
"name": "Run in Development Mode",
"type": "node",
"request": "launch",
"type": "node-terminal"
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "dev"],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"skipFiles": ["<node_internals>/**", "${workspaceFolder}/node_modules/**"]
},
{
"name": "Run in Production Mode",
"type": "node",
"request": "launch",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "start"],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"skipFiles": ["<node_internals>/**", "${workspaceFolder}/node_modules/**"],
"preLaunchTask": "npm: build"
}
]
}
13 changes: 13 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "build",
"group": "build",
"problemMatcher": [],
"label": "npm: build",
"detail": "Build the project"
}
]
}
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/1.9.2/schema.json",
"$schema": "https://biomejs.dev/schemas/1.9.3/schema.json",
"formatter": {
"indentStyle": "space",
"lineWidth": 120
Expand Down
Loading

0 comments on commit e746c74

Please sign in to comment.