mirror of
https://github.com/plebbit/seedit.git
synced 2026-04-21 15:48:43 -04:00
Swap the app to the latest bitsocial-react-hooks commit, add a local compatibility shim for the legacy subplebbit API surface, and keep the in-flight account-history improvements that now use hook-side paging/filtering.
32 lines
667 B
JSON
32 lines
667 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2015",
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"paths": {
|
|
"@bitsocialnet/bitsocial-react-hooks": [
|
|
"./src/lib/bitsocial-react-hooks-compat.ts"
|
|
]
|
|
},
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx"
|
|
},
|
|
"include": [
|
|
"src"
|
|
]
|
|
}
|