relay-sqlite-example (#1403)

* relay-sqlite-example

Manager+Adapter

* Update README.md
This commit is contained in:
ponzS
2025-06-15 16:39:24 +08:00
committed by GitHub
parent 4b43fa7f2c
commit 938697dee9
22 changed files with 3180 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
{
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"module": "ESNext",
"moduleResolution": "Node",
"strict": true,
"jsx": "preserve",
"resolveJsonModule": true,
"isolatedModules": true,
"esModuleInterop": true,
"lib": ["ESNext", "DOM"],
"skipLibCheck": true,
"noEmit": true,
"paths": {
"@/*": ["./src/*"],
"bare-plugin": ["./bare-plugin/dist/plugin"]
}
},
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
"references": [{ "path": "./tsconfig.node.json" }]
}