Answers for "paths typescript"

0

paths typescript

"compilerOptions": {
        "baseUrl": "src", // This must be specified if "paths" is.
         ...
        "paths": {
            "@app/*": ["app/*"],
            "@config/*": ["app/_config/*"],
            "@environment/*": ["environments/*"],
            "@shared/*": ["app/_shared/*"],
            "@helpers/*": ["helpers/*"]
        },
        ...
Posted by: Guest on February-07-2021
0

paths typescript

{
  "compilerOptions": {
    "baseUrl": ".",
    "paths": {
      "*": ["*", "generated/*"]
    }
  }
}
Posted by: Guest on February-07-2021

Code answers related to "TypeScript"

Browse Popular Code Answers by Language