Skip to content

Commit 7551d46

Browse files
authored
feat: e2e dataset benchmarks + fix npm tarball entry points (#23)
* feat: e2e dataset benchmarks, CI gate, contributor docs - Add Docker-backed dataset E2E bench scripts, compose services, multi-run aggregates - Add baseline compare + template JSON; wire CI job on Postgres - Document benchmark output/regression in docs/benchmark-regression.md - Add CONTRIBUTING, issue template + config; README updates; GIF script UX - Typecheck scripts via tsconfig; exclude scripts from build; Prisma shim types * fix: set rootDir to src so published tarball matches package exports tsc was emitting dist/src/*.js while main and exports point to dist/index.js and dist/prisma.js, breaking installs of @olegkoval/queryd on npm.
1 parent 2ca64c7 commit 7551d46

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tsconfig.build.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"extends": "./tsconfig.json",
33
"compilerOptions": {
4-
"noEmit": false
4+
"noEmit": false,
5+
"rootDir": "./src"
56
},
67
"exclude": ["dist", "node_modules", "src/**/__tests__/**", "src/**/*.test.ts", "scripts/**"]
78
}

0 commit comments

Comments
 (0)