Skip to content

Instantly share code, notes, and snippets.

@guilhermebkel
Last active January 8, 2020 10:04
Show Gist options
  • Save guilhermebkel/df9af08823ef54d92b2f98dd08aa0c7b to your computer and use it in GitHub Desktop.
Save guilhermebkel/df9af08823ef54d92b2f98dd08aa0c7b to your computer and use it in GitHub Desktop.
different-path-alias-for-typescript-dev-and-prod
// Usually the file you use to start your application
// ...
import "module-alias/register"
import "tsconfig-paths/register"
// ...
{
// ...
// Your aliases for production
"_moduleAliases": {
// ...
"~": "./dist/apps"
// ...
}
// ...
}
{
"compilerOptions": {
// ...
"rootDir": ".",
"outDir": "dist",
"baseUrl": ".",
// Your aliases for development
"paths": {
"~/*": ["./src/*"]
}
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment