Skip to content

Commit

Permalink
fix: update deno.unstable settings in VS Code settings.json template (#…
Browse files Browse the repository at this point in the history
…2684)

Update the "deno.unstable" settings in .vscode/settings.json to replace the deprecated boolean flag option.

Refactor the settings to include the following flags:
- bare-node-builtins
- byonm
- sloppy-imports
- unsafe-proto
- webgpu
- broadcast-channel
- worker-options
- cron
- kv
- ffi
- fs
- http
- net
  • Loading branch information
oxcabe authored Sep 17, 2024
1 parent 9b9bb4a commit b0a0488
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion internal/init/templates/.vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,21 @@
"supabase/functions"
],
"deno.lint": true,
"deno.unstable": true,
"deno.unstable": [
"bare-node-builtins",
"byonm",
"sloppy-imports",
"unsafe-proto",
"webgpu",
"broadcast-channel",
"worker-options",
"cron",
"kv",
"ffi",
"fs",
"http",
"net"
],
"[typescript]": {
"editor.defaultFormatter": "denoland.vscode-deno"
}
Expand Down

0 comments on commit b0a0488

Please sign in to comment.