mirror of
https://github.com/Xevion/banner.git
synced 2026-01-31 08:23:35 -06:00
Move all [script("bun")] blocks into standalone TypeScript files under
scripts/ with shared utilities in scripts/lib/. The Justfile is now ~40
lines of thin `bun scripts/*.ts` wrappers.
Shared code consolidated into two lib files:
- lib/proc.ts: process spawning (run, spawnCollect, raceInOrder, ProcessGroup)
- lib/fmt.ts: color output, elapsed timers, reusable flag parser
16 lines
283 B
JSON
16 lines
283 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"skipLibCheck": true,
|
|
"types": ["bun-types"],
|
|
"paths": {
|
|
"#lib/*": ["./lib/*"]
|
|
}
|
|
},
|
|
"include": ["**/*.ts"]
|
|
}
|