bun-lune-loader/README.md

15 lines
206 B
Markdown

# bun-luau-loader
Allows to import lua/luau files in TypeScript. Requires Lune.
```lua
-- module.luau
return {
SomeKey = "SomeValue"
}
```
```ts
// index.ts
import { SomeKey } from "./module.luau"
```