feat(regime)

This commit is contained in:
Dan Finch 2026-04-29 00:55:53 +02:00
commit 2be7ec6836
62 changed files with 1817 additions and 0 deletions

View file

@ -0,0 +1 @@
{}

View file

@ -0,0 +1,5 @@
{
"devDependencies": {
"@types/bun": "^1.3.13"
}
}

View file

@ -0,0 +1,13 @@
{
"extends": "./tsconfig.base.json",
"references": [
{ "path": "./tsconfig.src.json" }
],
"compilerOptions": {
"composite": true,
"types": ["bun"]
},
"include": [
"src/bun"
]
}

View file

@ -0,0 +1,5 @@
{
"references": [
{ "path": "./tsconfig.bun.json" }
]
}

View file

@ -0,0 +1,5 @@
{
"exclude": [
"src/bun"
]
}

View file

@ -0,0 +1 @@
{}

View file

@ -0,0 +1,5 @@
{
"devDependencies": {
"@cloudflare/workers-types": "^4.20250425.0"
}
}

View file

@ -0,0 +1,13 @@
{
"extends": "./tsconfig.base.json",
"references": [
{ "path": "./tsconfig.src.json" }
],
"compilerOptions": {
"composite": true,
"types": ["@cloudflare/workers-types"]
},
"include": [
"src/cloudflare"
]
}

View file

@ -0,0 +1,5 @@
{
"references": [
{ "path": "./tsconfig.cloudflare.json" }
]
}

View file

@ -0,0 +1,5 @@
{
"exclude": [
"src/cloudflare"
]
}