diff options
-rw-r--r-- | .vscode/launch.json | 21 | ||||
-rw-r--r-- | src/feature_flags.zig | 2 |
2 files changed, 20 insertions, 3 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index dfcd51e93..dd4349d2c 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -137,15 +137,32 @@ { "type": "lldb", "request": "launch", + "name": "Mixed case resolve", + "program": "${workspaceFolder}/build/debug/macos-x86_64/bun", + "args": [ + "build", + "./index.js", + "--origin=http://localhost:9000/", + // "--use=./bun-framework-next", + "--platform=browser" + ], + "cwd": "${workspaceFolder}/examples/lotta-modules/", + "console": "internalConsole" + }, + + { + "type": "lldb", + "request": "launch", "name": "Demo Build .bun", "program": "${workspaceFolder}/build/debug/macos-x86_64/bun", "args": [ "bun", + "./index.js", "--origin=http://localhost:9000/", - "--use=bun-framework-next", + // "--use=./bun-framework-next", "--platform=browser" ], - "cwd": "${workspaceFolder}/examples/hello-next", + "cwd": "${workspaceFolder}/examples/lotta-modules/", "console": "internalConsole" }, { diff --git a/src/feature_flags.zig b/src/feature_flags.zig index 1efb55a10..1efd806e8 100644 --- a/src/feature_flags.zig +++ b/src/feature_flags.zig @@ -34,7 +34,7 @@ pub const css_supports_fence = true; pub const enable_entry_cache = true; pub const enable_bytecode_caching = false; -pub const verbose_fs = true; +pub const verbose_fs = false; pub const watch_directories = true; |