mirror of
https://github.com/CompeyDev/bun-lune-loader.git
synced 2025-12-14 03:21:51 +00:00
Bun plugin for importing lua & luau using lune, the standalone luau script runtime.
| .vscode | ||
| src | ||
| tests | ||
| utils | ||
| .gitattributes | ||
| .gitignore | ||
| bun.lockb | ||
| bunfig.toml | ||
| package.json | ||
| README.md | ||
| test.ts | ||
| tsconfig.json | ||
bun-luau-loader
Allows to import lua/luau files in TypeScript. Requires Lune.
-- module.luau
return {
SomeKey = "SomeValue"
}
// index.ts
import { SomeKey } from "./module.luau"