From 9315502369434c3a7372a3235fc4f93ff5e80e93 Mon Sep 17 00:00:00 2001 From: Pau Costa Date: Sat, 28 Mar 2026 18:47:36 +0100 Subject: [PATCH] Exclude Prisma directory from API build configuration --- .idea/workspace.xml | 42 ++++++++++++++++++++++++++---------- apps/api/tsconfig.build.json | 2 +- 2 files changed, 32 insertions(+), 12 deletions(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 2e3b387..3d35eb0 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -4,11 +4,7 @@ - - - @@ -390,6 +407,9 @@ - \ No newline at end of file diff --git a/apps/api/tsconfig.build.json b/apps/api/tsconfig.build.json index 64f86c6..2c8f61f 100644 --- a/apps/api/tsconfig.build.json +++ b/apps/api/tsconfig.build.json @@ -1,4 +1,4 @@ { "extends": "./tsconfig.json", - "exclude": ["node_modules", "test", "dist", "**/*spec.ts"] + "exclude": ["node_modules", "test", "dist", "**/*spec.ts", "prisma"] }