We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#3469
.ts
.d.ts
tsconfig.json
rootDir
include
noResolve
/// <reference ... />
import
referenceTarget: true
--declaratin
tsbuild
tsc
--outFile
src/compiler/types.ts
lib.d.ts
Diff
Omit
ReturnType
DeepReadonly
Map
Set
Spread
Array
ReadonlyArray
type Processor<T> = (subj: T) => void; function doStuff<A, B extends A>(parentProcessors: Array<Processor<A>>, childProcessors: Array<Processor<B>>) { childProcessors.concat(parentProcessors); } function foo<A, B extends A>() { let aa }
indexOf
U super T
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Project References
#3469
4.8 MB of
.ts
files, or 400KB of.d.ts
.d.ts
for a project reference instead of the.ts
files of the project.tsconfig.json
?rootDir
.rootDir
needs to be explicit, or is based on thetsconfig.json
location.include
rules have to be exhaustive.noResolve
.noResolve
do again?"/// <reference ... />
or animport
.referenceTarget: true
(bikeshed on name later!) in thetsconfig.json
--declaratin
rootDir
and exhaustive resolution rules.tsbuild
tsc
?--outFile
, not modules.src/compiler/types.ts
.d.ts
source-mapping so that language-service operations can work.tsc
itself.Type Helpers in
lib.d.ts
Diff
andOmit
ReturnType
DeepReadonly
Map
s andSet
s.Spread
Array
/ReadonlyArray
mismatchesReadonlyArray
invariant and unrelated between the two.indexOf
.U super T
ofindexOf
.The text was updated successfully, but these errors were encountered: