bun-lune-loader/README.md

16 lines
206 B
Markdown
Raw Permalink Normal View History

2023-09-15 12:56:43 +01:00
# bun-luau-loader
Allows to import lua/luau files in TypeScript. Requires Lune.
2023-09-15 12:56:43 +01:00
```lua
-- module.luau
return {
SomeKey = "SomeValue"
}
2023-09-15 12:56:43 +01:00
```
```ts
// index.ts
import { SomeKey } from "./module.luau"
2023-09-15 12:56:43 +01:00
```