-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
81 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "bun", | ||
"request": "launch", | ||
"name": "Debug Bun", | ||
// The path to a JavaScript or TypeScript file to run. | ||
"program": "${file}", | ||
// The arguments to pass to the program, if any. | ||
"args": [], | ||
// The working directory of the program. | ||
"cwd": "${workspaceFolder}", | ||
// The environment variables to pass to the program. | ||
"env": {}, | ||
// If the environment variables should not be inherited from the parent process. | ||
"strictEnv": false, | ||
// If the program should be run in watch mode. | ||
// This is equivalent to passing `--watch` to the `bun` executable. | ||
// You can also set this to "hot" to enable hot reloading using `--hot`. | ||
"watchMode": false, | ||
// If the debugger should stop on the first line of the program. | ||
"stopOnEntry": false, | ||
// If the debugger should be disabled. (for example, breakpoints will not be hit) | ||
"noDebug": false, | ||
// The path to the `bun` executable, defaults to your `PATH` environment variable. | ||
"runtime": "bun", | ||
// The arguments to pass to the `bun` executable, if any. | ||
// Unlike `args`, these are passed to the executable itself, not the program. | ||
"runtimeArgs": [] | ||
}, | ||
{ | ||
"type": "bun", | ||
"request": "attach", | ||
"name": "Attach to Bun", | ||
// The URL of the WebSocket inspector to attach to. | ||
// This value can be retrieved by using `bun --inspect`. | ||
"url": "ws://localhost:6499/" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
logLevel = "warn" | ||
telemetry = true | ||
|
||
[test] | ||
root = "./test" | ||
|
||
[install] | ||
dev = true | ||
peer = true | ||
exact = true | ||
auto = "auto" | ||
|
||
[install.lockfile] | ||
save = true | ||
|
||
[run] | ||
shell = "bun" | ||
bun = true | ||
silent = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters