[Abstract module paths and `init.luau`](https://rfcs.luau.org/abstract-module-paths-and-init-dot-luau.html) semantics as currently implemented do not work properly with Luau CLI (via `luau.exe <script path>`) The code: ```lua -- example/init.luau require("@self/a") ``` ```lua -- example/a.luau return { a = "a", } ``` The error: ```sh ❯ luau ./example/init.luau ./example/init:1: error requiring module "@self/a": could not resolve child component "a" stacktrace: [C] function require ./example/init:1 ``` the code structure(the picture attached below): 