MCPcopy Create free account
hub / github.com/Effect-TS/tsgo / GetIncludeSuggestionsInTsc

Method GetIncludeSuggestionsInTsc

etscore/options.go:233–238  ·  view source on GitHub ↗

GetIncludeSuggestionsInTsc returns whether suggestion diagnostics should appear in tsc output. Returns true (include suggestions) when the receiver is nil.

()

Source from the content-addressed store, hash-verified

231// GetIncludeSuggestionsInTsc returns whether suggestion diagnostics should appear in tsc output.
232// Returns true (include suggestions) when the receiver is nil.
233func (e *EffectPluginOptions) GetIncludeSuggestionsInTsc() bool {
234 if e == nil {
235 return true
236 }
237 return e.IncludeSuggestionsInTsc
238}
239
240// GetPipeableMinArgCount returns the configured minimum pipeable arg count, or 2 if not set.
241func (e *ResolvedEffectPluginOptions) GetPipeableMinArgCount() int {

Calls

no outgoing calls