1"compilerOptions": {
2 "baseUrl": "src", // This must be specified if "paths" is.
3 ...
4 "paths": {
5 "@app/*": ["app/*"],
6 "@config/*": ["app/_config/*"],
7 "@environment/*": ["environments/*"],
8 "@shared/*": ["app/_shared/*"],
9 "@helpers/*": ["helpers/*"]
10 },
11 ...
12
1{
2 "compilerOptions": {
3 "baseUrl": ".",
4 "paths": {
5 "*": ["*", "generated/*"]
6 }
7 }
8}