Skip to content

Commit 431747b

Browse files
Merge pull request #1140 from objectstack-ai/claude/fix-ci-build-test-errors-another-one
Fix @objectstack/server build configuration
2 parents 46b6dc5 + cf9c49f commit 431747b

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

apps/server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"scripts": {
88
"dev": "objectstack serve --dev",
99
"start": "objectstack serve",
10-
"build": "tsc && objectstack compile",
10+
"build": "objectstack compile",
1111
"typecheck": "tsc --noEmit",
1212
"test": "objectstack test",
1313
"test:e2e": "tsx test/e2e.test.ts",

apps/server/tsconfig.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "./dist",
5-
"rootDir": "./src",
6-
"module": "NodeNext"
5+
"rootDir": ".",
6+
"module": "NodeNext",
7+
"skipLibCheck": true
78
},
8-
"include": ["src/**/*"],
9-
"exclude": ["node_modules", "dist"]
9+
"include": ["*.ts", "lib/**/*.ts", "server/**/*.ts", "api/**/*.ts"],
10+
"exclude": ["node_modules", "dist", "test"]
1011
}

0 commit comments

Comments
 (0)