Acknowledgement
Comment
The TypeScript documentation example for configuring paths in tsconfig.json has a typo involving missing {parentheses}. The issue can be found in the following code snippet:
Steps to Reproduce:
TypeScript - Paths

Corrected:
{
"compilerOptions": {
"paths": {
"app/*": ["./src/app/*"],
"config/*": ["./src/app/_config/*"],
"environment/*": ["./src/environments/*"],
"shared/*": ["./src/app/_shared/*"],
"helpers/*": ["./src/helpers/*"],
"tests/*": ["./src/tests/*"]
}
}
}