I usually have a pretty nested folder structure and requiring using "../../../../" gets quite annoying.
I would like for Azul to compile .luaurc aliases to normal paths when syncing for example:
local cool_package = require("@pkg/cool") -> require(game:GetService("ReplicatedStorage").Packages.cool)
And this would be the .luaurc file in this example:
{
"aliases": {
"pkg": "sync/ReplicatedStorage/Packages"
}
}
I usually have a pretty nested folder structure and requiring using "../../../../" gets quite annoying.
I would like for Azul to compile .luaurc aliases to normal paths when syncing for example:
local cool_package = require("@pkg/cool") -> require(game:GetService("ReplicatedStorage").Packages.cool)
And this would be the .luaurc file in this example:
{
"aliases": {
"pkg": "sync/ReplicatedStorage/Packages"
}
}