diff --git a/apps/web-next/eslint.config.js b/apps/web-next/eslint.config.js index 35479e2..6b076ed 100644 --- a/apps/web-next/eslint.config.js +++ b/apps/web-next/eslint.config.js @@ -1,3 +1,11 @@ import baseConfig from "@repo/eslint-config/base"; -export default baseConfig; +export default [ + ...baseConfig, + { + files: ["next-env.d.ts"], + rules: { + "@typescript-eslint/triple-slash-reference": "off", + }, + }, +]; diff --git a/turbo.json b/turbo.json index 4acfc80..038e136 100644 --- a/turbo.json +++ b/turbo.json @@ -1,5 +1,6 @@ { "$schema": "https://turborepo.dev/schema.json", + "globalEnv": ["CI", "DATABASE_URL", "PAYLOAD_SECRET", "NODE_ENV"], "tasks": { "build": { "dependsOn": ["^build"],