A privacy-first, self-hosted, fully open source personal knowledge management software, written in typescript and golang. (PERSONAL FORK)
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at lambda-fork/main 23 lines 377 B view raw
1{ 2 "compilerOptions": { 3 "outDir": "./src/types/dist", 4 "noImplicitAny": true, 5 "module": "commonjs", 6 "target": "es6", 7 "typeRoots": [ 8 "./node_modules/@types" 9 ], 10 "types": [ 11 "./src/types", 12 "node" 13 ], 14 "declaration": true, 15 "emitDeclarationOnly": true 16 }, 17 "include": [ 18 "src" 19 ], 20 "exclude": [ 21 "node_modules" 22 ] 23}