mirror of
https://github.com/FoxxMD/context-mod.git
synced 2026-01-13 07:37:53 -05:00
* Fix list function passed from author activities convenience method * Move author history caching into main activity fetching function * Do a better job at rehydrating snoowrap objects from cache data -- set as fetched, substitute relationships for non-fetching objects, and remove listing related objects * Cache key for results based on window and pre-filter only -- post filter can be done after fetching cached results (Should save api calls!)
24 lines
436 B
JSON
24 lines
436 B
JSON
{
|
|
"extends": "@tsconfig/node14/tsconfig.json",
|
|
"compilerOptions": {
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"typeRoots": [
|
|
"./node_modules/@types",
|
|
"./src/Web/types",
|
|
"./src/Common/Typings"
|
|
]
|
|
},
|
|
"include": [
|
|
"**/*.ts",
|
|
"**/*.tsx"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"coverage",
|
|
"tests/*.ts"
|
|
]
|
|
}
|