From 58dc4e194e56a2203ea5213c55b4ea19393f281f Mon Sep 17 00:00:00 2001 From: NHoarau Date: Mon, 22 Jun 2026 15:08:06 +0400 Subject: [PATCH] fix core config --- apps/api/tsconfig.json | 2 +- packages/schema/package.json | 4 ++-- turbo.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/api/tsconfig.json b/apps/api/tsconfig.json index f0a954d..db68174 100644 --- a/apps/api/tsconfig.json +++ b/apps/api/tsconfig.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "./dist", "rootDir": "./src", - "incremental": true, + "incremental": false, "types": ["jest", "node"] }, "include": ["src/**/*"], diff --git a/packages/schema/package.json b/packages/schema/package.json index 9643db2..95e2e01 100644 --- a/packages/schema/package.json +++ b/packages/schema/package.json @@ -23,8 +23,8 @@ } }, "scripts": { - "build": "rolldown -c rolldown.config.ts --clean-dir && tsc --declaration --emitDeclarationOnly --outDir dist", - "dev": "rolldown -c rolldown.config.ts --clean-dir --watch", + "build": "tsc --declaration --emitDeclarationOnly --outDir dist && rolldown -c rolldown.config.ts", + "dev": "rolldown -c rolldown.config.ts --watch", "clean": "rm -rf dist", "check-types": "tsc --noEmit", "lint": "eslint \"src/**/*.ts\" --fix", diff --git a/turbo.json b/turbo.json index 2b019c9..4276218 100644 --- a/turbo.json +++ b/turbo.json @@ -11,7 +11,7 @@ "dependsOn": ["^lint"] }, "check-types": { - "dependsOn": ["^check-types"] + "dependsOn": ["^build", "^check-types"] }, "dev": { "cache": false,