diff options
author | Matthew Miller <matthew@millerti.me> | 2023-09-23 08:14:26 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2023-09-23 08:14:26 -0700 |
commit | b68c049f8043e4870eacfa46fc19ee5aa97cb3d4 (patch) | |
tree | 473dd794f2443e0ad76d1b1c8d5ae8f7042d1ab6 | |
parent | 4c43194d644333db157613b87f8ae9a6885c5e7a (diff) |
Fix issue with VS Code Deno extension
-rw-r--r-- | .vscode/settings.json | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json index aa3e177..04bb916 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,6 +1,9 @@ { "typescript.tsdk": "node_modules/typescript/lib", "editor.formatOnSave": true, + // `deno.enable` is superfluous but necessary pre-Deno 1.37 (we're currently using 1.36) + // See https://github.com/denoland/deno/issues/20411#issuecomment-1725920550 + "deno.enable": true, "deno.path": "/opt/homebrew/bin/deno", "deno.enablePaths": [ "./packages/server", |