// scripts/tsconfig.json
"files": [], "references": [ "path": "./packages/core" , "path": "./packages/web" , "path": "./scripts" ]
Move the problematic file into an already-included directory: file is not included in any tsconfig.json
"typescript.tsserver.experimental.enableProjectDiagnostics": true, "typescript.tsserver.maxTsServerMemory": 4096
"extends": "../../tsconfig.base.json", "compilerOptions": "composite": true, "outDir": "./dist" , "include": ["src/**/*"], "references": [ "path": "../shared" ] // scripts/tsconfig
# Instead of: project/tool.ts # Move to: project/src/tool.ts mv tool.ts src/ Common include patterns: "include": [ "src/**/*.ts", // All TS files in src "src/**/*.tsx", // React TSX files "test/**/*.spec.ts", // Test files "config/*.ts" // Root config files ]
"compilerOptions": "strict": true, "esModuleInterop": true, "skipLibCheck": true, "forceConsistentCasingInFileNames": true // scripts/tsconfig.json "files": []
"compilerOptions": "rootDir": "./src", "outDir": "./dist" , "include": ["src/**/*"]
// packages/api/tsconfig.json