feat(regime)

This commit is contained in:
Dan Finch 2026-04-29 00:55:53 +02:00
commit 655175f273
36 changed files with 1066 additions and 0 deletions

View file

@ -0,0 +1,5 @@
{
"inherits": [
"tools-ts"
]
}

View file

@ -0,0 +1,8 @@
{
"scripts": {
"test": "bun test --pass-with-no-tests"
},
"files": [
"src"
]
}

View file

@ -0,0 +1,13 @@
{
"compilerOptions": {
"module": "esnext",
"target": "esnext",
"lib": ["esnext"],
"moduleResolution": "bundler",
"esModuleInterop": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true
}
}