Skip to content

Instantly share code, notes, and snippets.

@workfel
Created October 16, 2018 16:24
Show Gist options
  • Save workfel/30f343556c945a96fb8c906b6469e7bb to your computer and use it in GitHub Desktop.
Save workfel/30f343556c945a96fb8c906b6469e7bb to your computer and use it in GitHub Desktop.
import module typescript with aliases
{
"compilerOptions": {
//....
"paths": {
"@auth/*": [
"my_path/auth/*"
],
"@shared/*": [
"shared/*"
],
"@commands/*": [
"my_module1/commands/*",
"my_module2/commands/*"
]
}
},
"include": [
"src/**/*"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment