Check tsconfig paths
September 25, 2023 ยท View on GitHub

Description
This validator checks that the main typescript configuration is containing valid path configurations. To do so, wildcard paths are not allowed.
It checks also if nested typescript configuration are not declaring paths. In fact, all paths should be declared in the main tsconfig.base.json
Solution
- Remove wildcard paths from your main
tsconfig.base.json. - Ensure that nested
tsconfig.json,tsconfig.app.json,tsconfig.spec.json,tsconfig.lib.jsonare not containing any paths configuration. If it is the case, move these paths to the maintsconfig.base.json.