diff --git a/eslint.config.mjs b/eslint.config.mjs index fb208bf..163eb5c 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -15,6 +15,9 @@ const eslintConfig = defineConfig([ // Non-app scripts and seed — not part of Next.js build "scripts/**", "prisma/seed.ts", + // Separate services with their own build + "worker/**", + "bot/**", ]), ]); diff --git a/tsconfig.json b/tsconfig.json index 9c0b009..5f5f129 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -31,5 +31,5 @@ ".next/dev/types/**/*.ts", "**/*.mts" ], - "exclude": ["node_modules", "prisma/seed.ts", "scripts/**", "worker/**"] + "exclude": ["node_modules", "prisma/seed.ts", "scripts/**", "worker/**", "bot/**"] }