adding the data-pipeline to ts and pnpm workspaces
This commit is contained in:
parent
200b14ef64
commit
a3d19d36f6
12 changed files with 327 additions and 22 deletions
23
data-pipeline/package.json
Normal file
23
data-pipeline/package.json
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"name": "@lila/pipeline",
|
||||
"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"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lila/shared": "workspace:*",
|
||||
"better-sqlite3": "^12.9.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/better-sqlite3": "^7.6.13",
|
||||
"@types/node": "^24.12.0",
|
||||
"tsx": "^4.21.0",
|
||||
"typescript": "^5.9.3"
|
||||
}
|
||||
}
|
||||
11
data-pipeline/tsconfig.json
Normal file
11
data-pipeline/tsconfig.json
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"extends": "../tsconfig.base.json",
|
||||
"compilerOptions": {
|
||||
"module": "NodeNext",
|
||||
"moduleResolution": "NodeNext",
|
||||
"outDir": "dist",
|
||||
"rootDir": "scripts",
|
||||
},
|
||||
"references": [{ "path": "../packages/shared" }],
|
||||
"include": ["scripts/**/*"],
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue