break up library, move bots to their own repositories

This commit is contained in:
JB
2026-02-12 21:05:15 -05:00
parent 415aa3dbfe
commit cb39431a11
289 changed files with 1931 additions and 6235 deletions

View File

@@ -5,6 +5,7 @@
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"typeRoots": ["src/types", "node_modules/@types"],
// Bundler mode
"moduleResolution": "bundler",
@@ -23,6 +24,10 @@
"noPropertyAccessFromIndexSignature": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true
"emitDecoratorMetadata": true,
"paths": {
"@/*": ["./src/*"],
},
}
}