mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +00:00
10 lines
453 B
Zig
10 lines
453 B
Zig
const std = @import("std");
|
|
|
|
pub const fixtures = std.ComptimeStringMap([]u8, .{
|
|
.{ "package.json", @embedFile("./fixtures/package.json") },
|
|
.{ "tsconfig.json", @embedFile("./fixtures/tsconfig.json") },
|
|
.{ "simple-component.js", @embedFile("./fixtures/simple-component.js") },
|
|
.{ "simple-component.tsx", @embedFile("./fixtures/simple-component.tsx") },
|
|
.{ "simple-component.tsx", @embedFile("./fixtures/simple-component.tsx") },
|
|
});
|