* Split getFeed() into getAuthorFeed() and getHomeFeed() * Remove unused getFeed codegen file * Unify queries for getHomeFeed and getAuthorFeed * Factor out common query parts for building feeds * Test firehose and default feed algorithm * Fix api tsconfig reference
13 lines
282 B
JSON
13 lines
282 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "./dist", // Your outDir,
|
|
"emitDeclarationOnly": true
|
|
},
|
|
"include": ["./src"],
|
|
"references": [
|
|
{ "path": "../xrpc/tsconfig.build.json" },
|
|
{ "path": "../lex-cli/tsconfig.build.json" }
|
|
]
|
|
}
|