mongodb-labs/full-stack-fastapi-mongodb

Removing hardcoded paths

Closed this issue · 1 comments

"@": ["/Users/nstapp/Github/full-stack-fastapi-mongodb-react/app/"],
"@/*": ["/Users/nstapp/Github/full-stack-fastapi-mongodb-react/app/*"]

These should probably just look like:

"paths": {
      "@": ["./"],
      "@/*": ["./*"]
    }

Instead of the hardcoded path that exists at the moment.

Jibola commented

Thanks for the suggestion. We've merged the change!