Description
Acknowledgement
- I acknowledge that issues using this template may be closed without further explanation at the maintainer's discretion.
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/*"]
}
}
}