Update settings.json

This commit is contained in:
Nate Kelley 2025-07-14 10:11:18 -06:00
parent 8616aa75c8
commit c30a5fa6d2
No known key found for this signature in database
GPG Key ID: FD90372AB8D98B4F
1 changed files with 20 additions and 0 deletions

20
.vscode/settings.json vendored
View File

@ -47,7 +47,27 @@
"typescript.format.enable": true,
"typescript.check.npmIsInstalled": false,
"typescript.disableAutomaticTypeAcquisition": true,
// Ensure TypeScript watches all files in the workspace
"typescript.tsserver.watchOptions": {
"watchFile": "priorityPollingInterval",
"watchDirectory": "dynamicPriorityPolling",
"fallbackPolling": "dynamicPriorityPolling",
"excludeDirectories": ["**/node_modules", "**/target", "**/.turbo"],
},
// Enable TypeScript's auto-build for better cross-package updates
"typescript.tsc.autoDetect": "watch",
// CRITICAL: Force TypeScript to check ALL files on startup
"typescript.tsserver.experimental.enableProjectDiagnostics": true,
// Open TypeScript log to debug issues
"typescript.tsserver.log": "normal",
// NUCLEAR OPTION: Disable lazy loading
"typescript.tsserver.useSyntaxServer": "never",
"typescript.tsserver.maxTsServerMemory": 16384,
// Default Biome formatting for all file types
"[typescript]": {