paths typescript

Solutions on MaxInterview for paths typescript by the best coders in the world

showing results for - "paths typescript"
Deborah
03 Feb 2018
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
Isabella
01 Jul 2020
1{
2  "compilerOptions": {
3    "baseUrl": ".",
4    "paths": {
5      "*": ["*", "generated/*"]
6    }
7  }
8}