projen
Version:
CDK for software projects
11 lines (9 loc) • 320 B
TypeScript
import type { BunPlugin } from 'bun';
/**
* Bun plugin for `.properties` files. Works with both `Bun.plugin` (runtime) and `Bun.build`
* (build-time).
*/
declare const bunPlugin: BunPlugin;
export default bunPlugin;
// Enables type recognition for direct `.properties` file imports.
import '../properties-file.d.ts'