feat(regime)

This commit is contained in:
Dan Finch 2026-04-29 00:55:53 +02:00
commit 1f712c1c84
37 changed files with 1059 additions and 0 deletions

19
tsconfig.json Normal file
View file

@ -0,0 +1,19 @@
{
"compilerOptions": {
"composite": true,
"module": "esnext",
"target": "esnext",
"lib": ["esnext"],
"types": ["bun"],
"moduleResolution": "bundler",
"esModuleInterop": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"strict": true,
"outDir": "lib"
},
"include": [
"src/**/*",
"./bin/regime"
]
}