Files
context-mod/tsconfig.json
FoxxMD 0fd57af67e feat(window): More improvements for new window usage and caching
* 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!)
2022-05-09 15:34:19 -04:00

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"
]
}