Answers for "autocomplete from babel alias"

0

autocomplete from babel alias

Try creating a jsconfig.json and configuring the paths compiler options

{
  "compilerOptions": {
    "baseUrl": ".",
    "module": "commonjs",
    "paths": {
      "@cmp/*": ["./src/components/*"]
    }
  }
}
Posted by: Guest on September-06-2021

Browse Popular Code Answers by Language