deno.json: exclude public directory to prevent LSP from crashing

https://github.com/denoland/deno/pull/19097#issuecomment-1880158674
This commit is contained in:
Alex Gleason 2024-01-07 14:09:00 -06:00
parent 9b39a1bd70
commit 42dfe083bf
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
2 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,6 @@
{
"deno.enable": true,
"deno.lint": true,
"deno.enablePaths": ["./src", "./scripts"],
"editor.defaultFormatter": "denoland.vscode-deno",
"path-intellisense.extensionOnImport": true
}

View File

@ -9,6 +9,7 @@
"check": "deno check src/server.ts",
"relays:sync": "deno run -A --unstable scripts/relays.ts sync"
},
"exclude": ["./public"],
"imports": {
"@/": "./src/",
"~/fixtures/": "./fixtures/"