xxxxxxxxxx
// in the jsconfig.json/tsconfig.json have this
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@models/*": [
"./models/*"
],
"@colors/*": [
"./utils/colors/*"
],
"@datetime/*": [
"./utils/datetime/*"
]
}
}
}
//example of what would have been before the above
import { hexToRgb, rgbToHex } from '../utils/colors/converter'
//we replace the above import with
import { hexToRgb, rgbToHex } from '@colors/converter'