---
title: "Feature: #54518 - Provide TSconfig to link checkers"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-54518"
source: "Changelog/7.0/Feature-54518-ProvideTsconfigToLinkCheckers.rst"
modified: "2026-09-14T09:47:36+00:00"
---

# Feature: #54518 - Provide TSconfig to link checkers

See [forge#54518](https://forge.typo3.org/issues/54518)

## Description

The active TSconfig of the linkvalidator is stored in the LinkAnalyzer and made
publicly available to the link checkers.

The TSconfig is read either from the currently active TSconfig in the Backend
when the linkvalidator is used in the info module or from the configuration
provided in the linkvalidator scheduler task.

This allows passing configuration to the different link checkers.

Usage:

```typoscript
# The configuration in mod.linkvalidator can be read by the link checkers.
mod.linkvalidator.mychecker.myvar = 1
```

## Impact

The method signature of `TYPO3CMSLinkvalidator::LinkAnalyzer::init()` is changed. A new parameter has been added
for submitting the current TSconfig. This can break third party code that extends this method.
