fix build problems, add all actual log funcs, move types
All checks were successful
Code quality checks / biome (push) Successful in 8s

This commit is contained in:
creations 2025-05-24 13:00:32 -04:00
parent d554599768
commit 542beb82a4
Signed by: creations
GPG key ID: 8F553AA4320FC711
8 changed files with 305 additions and 53 deletions

View file

@ -3,6 +3,7 @@
"baseUrl": "./",
"paths": {
"@/*": ["src/*"],
"@types": ["types/index.ts"],
"@types/*": ["types/*"],
"@lib/*": ["src/lib/*"]
},
@ -15,7 +16,10 @@
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
"noEmit": false,
"declaration": true,
"emitDeclarationOnly": true,
"outDir": "dist",
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,