Files
triggerdotdev--trigger.dev/apps/webapp/tsconfig.check.json
T
Matt Aitken 885d2d3560 Tags listing now uses ClickHouse (#2576)
* 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
2025-10-15 12:56:08 +01:00

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