> For the complete documentation index, see [llms.txt](https://knot.gitbook.io/language/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://knot.gitbook.io/language/internal/wip/module-format-change.md).

# Module Format Change

Change the module format to be a simpler:

```
import X from "@<owner>/<package>.<module>";

import JSX from "@knot/jsx";

// internal modules

// src/path/from/root.kn
import Y from "path.from.root";
// instead of
import Y from ".path.from.root";

// leading period doesn't really add much
```
