y-cap-sqlite
Version:
y-cap-sqlite is a persistence provider for [Yjs](https://github.com/yjs/yjs) that uses [@capacitor-community/sqlite](https://github.com/capacitor-community/sqlite) to store document changes in a SQLite database. This is useful for Capacitor projects that
42 lines • 737 B
JSON
{
"compilerOptions": {
"rootDir": ".",
"paths": {
"@/*": [
"./src/*"
],
"@@/*": [
"./*"
],
},
"target": "ESNext",
"useDefineForClassFields": true,
"module": "ESNext",
"lib": [
"ESNext",
"DOM"
],
"moduleResolution": "Node",
"strict": true,
"sourceMap": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"noEmit": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"forceConsistentCasingInFileNames": true,
"types": [
"node"
],
},
"include": [
"src"
],
"exclude": [
"**/*.test.ts",
"node_modules",
"test/**",
".history/**"
],
}