From 520749c4e3c9d4ba84a237e37b7285ed699d034c Mon Sep 17 00:00:00 2001 From: Danijel Martinek Date: Tue, 5 May 2026 09:29:37 +0200 Subject: [PATCH] build: add root test:e2e task aggregating per-app Playwright suites --- package.json | 1 + packages/core-api/tsconfig.json | 4 +++- packages/core-trpc/tsconfig.json | 4 +++- turbo.json | 4 ++++ 4 files changed, 11 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index e2272fa..08220bf 100644 --- a/package.json +++ b/package.json @@ -10,6 +10,7 @@ "dev": "turbo run dev", "lint": "turbo run lint", "test": "turbo run test", + "test:e2e": "turbo run test:e2e", "typecheck": "turbo run typecheck", "format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"", "format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"" diff --git a/packages/core-api/tsconfig.json b/packages/core-api/tsconfig.json index b52d4d5..7318533 100644 --- a/packages/core-api/tsconfig.json +++ b/packages/core-api/tsconfig.json @@ -2,7 +2,9 @@ "extends": "@repo/typescript-config/base.json", "compilerOptions": { "outDir": "dist", - "rootDir": "src" + "rootDir": "src", + "declaration": false, + "declarationMap": false }, "include": ["src/**/*"], "exclude": ["node_modules", "dist"] diff --git a/packages/core-trpc/tsconfig.json b/packages/core-trpc/tsconfig.json index fc252ac..f09019a 100644 --- a/packages/core-trpc/tsconfig.json +++ b/packages/core-trpc/tsconfig.json @@ -4,7 +4,9 @@ "outDir": "dist", "rootDir": "src", "lib": ["ES2022", "DOM"], - "jsx": "preserve" + "jsx": "preserve", + "declaration": false, + "declarationMap": false }, "include": ["src/**/*"], "exclude": ["node_modules", "dist"] diff --git a/turbo.json b/turbo.json index 90826ca..4acfc80 100644 --- a/turbo.json +++ b/turbo.json @@ -15,6 +15,10 @@ "test": { "dependsOn": ["^build"] }, + "test:e2e": { + "dependsOn": ["^build"], + "cache": false + }, "typecheck": { "dependsOn": ["^typecheck"] }