885d2d3560
* WIP using ClickHouse for the tags filter list * WIP on tags listing * Webapp: exclude test files when typechecking * Tags filtering working with CH * Remove unused import * The AI filter should only look at the last past 30d of tags * Do the text query in ClickHouse * Deal with encoded characters better * More encoding fixes * Fix for wrong items being checked * Put applied tags back * Add the env.id to the dependencies array
15 lines
318 B
JSON
15 lines
318 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"lib": ["DOM", "DOM.Iterable", "DOM.AsyncIterable", "ES2022"],
|
|
"target": "ES2022",
|
|
"noEmit": true,
|
|
"paths": {
|
|
"~/*": ["./app/*"],
|
|
"@/*": ["./*"]
|
|
},
|
|
"customConditions": []
|
|
},
|
|
"exclude": ["**/*.test.ts", "**/*.test.tsx"]
|
|
}
|