GetIncludeSuggestionsInTsc returns whether suggestion diagnostics should appear in tsc output. Returns true (include suggestions) when the receiver is nil.
()
| 231 | // GetIncludeSuggestionsInTsc returns whether suggestion diagnostics should appear in tsc output. |
| 232 | // Returns true (include suggestions) when the receiver is nil. |
| 233 | func (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. |
| 241 | func (e *ResolvedEffectPluginOptions) GetPipeableMinArgCount() int { |
no outgoing calls