Skip to content

Commit 64906db

Browse files
committed
fix(ci): keep app dist free of test-only deps
1 parent 2170d9b commit 64906db

2 files changed

Lines changed: 9 additions & 1 deletion

File tree

packages/app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"lint:tests": "npx @ton-ai-core/vibecode-linter tests/",
2020
"lint:effect": "npx eslint --config eslint.effect-ts-check.config.mjs .",
2121
"prebuild:docker-git": "pnpm -C ../lib build",
22-
"build:docker-git": "tsc -p tsconfig.json",
22+
"build:docker-git": "tsc -p tsconfig.build.json",
2323
"check": "pnpm run typecheck",
2424
"clone": "pnpm -C ../.. run clone",
2525
"docker-git": "node dist/src/docker-git/main.js",

packages/app/tsconfig.build.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"extends": "./tsconfig.json",
3+
"compilerOptions": {
4+
"types": []
5+
},
6+
"include": ["src/**/*"],
7+
"exclude": ["dist", "node_modules", "tests/**/*", "vite.config.ts", "vitest.config.ts"]
8+
}

0 commit comments

Comments
 (0)