From 9ea35568e59b7a1062bf5b2fea18b3abb67c57fd Mon Sep 17 00:00:00 2001 From: lila Date: Tue, 21 Apr 2026 12:01:29 +0200 Subject: [PATCH] updating config --- data-pipeline/package.json | 8 +------- data-pipeline/tsconfig.json | 5 +++-- 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/data-pipeline/package.json b/data-pipeline/package.json index a4b4523..1d27a98 100644 --- a/data-pipeline/package.json +++ b/data-pipeline/package.json @@ -3,13 +3,7 @@ "version": "1.0.0", "private": true, "type": "module", - "scripts": { - "extract": "tsx scripts/extract.ts", - "annotate": "tsx scripts/annotate.ts", - "enrich": "tsx scripts/enrich.ts", - "merge": "tsx scripts/merge.ts", - "compare": "tsx scripts/compare.ts" - }, + "scripts": {}, "dependencies": { "@lila/shared": "workspace:*", "better-sqlite3": "^12.9.0" diff --git a/data-pipeline/tsconfig.json b/data-pipeline/tsconfig.json index 19bf9bb..83c3053 100644 --- a/data-pipeline/tsconfig.json +++ b/data-pipeline/tsconfig.json @@ -4,8 +4,9 @@ "module": "NodeNext", "moduleResolution": "NodeNext", "outDir": "dist", - "rootDir": "scripts", + "rootDir": ".", + "types": ["node"], }, "references": [{ "path": "../packages/shared" }], - "include": ["scripts/**/*"], + "include": ["./**/*"], }