Function: isTsconfigConfigReference()
function isTsconfigConfigReference(
value: string
): value is
| "tsconfig.configs.all"
| "tsconfig.configs.emit-config"
| "tsconfig.configs.include-hygiene"
| "tsconfig.configs.jsconfig"
| "tsconfig.configs.lib-target"
| "tsconfig.configs.module-resolution"
| "tsconfig.configs.project-references"
| "tsconfig.configs.recommended"
| "tsconfig.configs.strict"
| "tsconfig.configs.strict-mode"
| "tsconfig.configs.strictest"
| 'tsconfig.configs["emit-config"]'
| 'tsconfig.configs["include-hygiene"]'
| 'tsconfig.configs["jsconfig"]'
| 'tsconfig.configs["lib-target"]'
| 'tsconfig.configs["module-resolution"]'
| 'tsconfig.configs["project-references"]'
| 'tsconfig.configs["strict-mode"]'
| 'tsconfig.configs["strictest"]';
Defined in: _internal/tsconfig-config-references.ts:182
Check whether a string is a supported meta.docs.tsconfigConfigs reference.
Parametersโ
valueโ
string
Returnsโ
value is "tsconfig.configs.all" | "tsconfig.configs.emit-config" | "tsconfig.configs.include-hygiene" | "tsconfig.configs.jsconfig" | "tsconfig.configs.lib-target" | "tsconfig.configs.module-resolution" | "tsconfig.configs.project-references" | "tsconfig.configs.recommended" | "tsconfig.configs.strict" | "tsconfig.configs.strict-mode" | "tsconfig.configs.strictest" | "tsconfig.configs["emit-config"]" | "tsconfig.configs["include-hygiene"]" | "tsconfig.configs["jsconfig"]" | "tsconfig.configs["lib-target"]" | "tsconfig.configs["module-resolution"]" | "tsconfig.configs["project-references"]" | "tsconfig.configs["strict-mode"]" | "tsconfig.configs["strictest"]"