feat: add session persistence examples and SQLite driver

This commit is contained in:
Nathan Flurry 2026-02-11 20:29:03 -08:00
parent 64d1324628
commit 3c2a9cbbbb
14 changed files with 524 additions and 11 deletions

View file

@ -0,0 +1,13 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"allowImportingTsExtensions": true,
"noEmit": true,
"esModuleInterop": true,
"strict": true,
"skipLibCheck": true
},
"include": ["src"]
}