You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Scenario: As a user, I want typescript compiler to default-exclude output transpiled files to compilerOptions.outDir with compilerOptions.declaration property set to true. I would expect that outDir is excluded by default, because:
it would prevent me from importing definitions from outDir by error, which is easy to do with intellisense
Scenario: As a user, I want typescript compiler to default-exclude output transpiled files to
compilerOptions.outDirwithcompilerOptions.declarationproperty set totrue. I would expect thatoutDiris excluded by default, because:outDirby error, which is easy to do with intellisenseTS5055errors such as spotted in TypeScript complains about overwriting .d.ts files that are potentially known outputs #16749 and tsc generating TS5055 error when generating declaration files #6046tscCLI has already implemented this behaviour, see PR exclude outDir and add more default excludes #8703