When adding any symbols except . to an import path literal, the compiler will complain about syntax error:
1: invalid import path literal, expected a dotted path like X.Y.Z
import x from "path:x"
This prevents for code reasoning, since the readers had to interpret what x = require "some custom path" is doing, or when they're trying to find specific import of x by searching import ... from.