Open kadirgun opened 1 day ago
.tsbuildinfo disable
No response
{ "compilerOptions": { "target": "ES2020", "useDefineForClassFields": true, "lib": ["ES2020", "DOM", "DOM.Iterable"], "module": "ESNext", "skipLibCheck": true, /* Bundler mode */ "moduleResolution": "bundler", "allowImportingTsExtensions": true, "resolveJsonModule": true, "isolatedModules": true, "moduleDetection": "force", "noEmit": true, "jsx": "react-jsx", "composite": false, "incremental": false, /* Linting */ "strict": true, "noUnusedLocals": true, "noUnusedParameters": true, "noFallthroughCasesInSwitch": true, "baseUrl": "." }, "include": ["src"] }
tsc -b
command started generating .tsbuildinfo file in version 5.6.3. In version 5.5 it did not.
When the incremental option is set to false, it should not create a .tsbuildinfo file.
This is working as intended. See: https://devblogs.microsoft.com/typescript/announcing-typescript-5-6/#.tsbuildinfo-is-always-written
🔎 Search Terms
.tsbuildinfo disable
🕗 Version & Regression Information
⏯ Playground Link
No response
💻 Code
🙁 Actual behavior
command started generating .tsbuildinfo file in version 5.6.3. In version 5.5 it did not.
🙂 Expected behavior
When the incremental option is set to false, it should not create a .tsbuildinfo file.
Additional information about the issue
No response