From 9b2c15ef7d25d01b85cd28193331ad0c9f80393f Mon Sep 17 00:00:00 2001 From: Felipe Coutinho Date: Sun, 26 Apr 2026 22:52:50 +0000 Subject: [PATCH] =?UTF-8?q?chore:=20ajustes=20de=20configura=C3=A7=C3=A3o?= =?UTF-8?q?=20diversos?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - tsconfig: target ES2017 → ES2022, remove ignoreDeprecations 6.0 - gitignore: ignora pasta .codex - next.config: remove linha em branco supérflua Co-Authored-By: Claude Opus 4.7 --- .gitignore | 1 + next.config.ts | 1 - tsconfig.json | 3 +-- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index c42bf1a..aca2596 100644 --- a/.gitignore +++ b/.gitignore @@ -106,6 +106,7 @@ docker-compose.override.yml .cursor/ QWEN.md AGENTS.md +.codex # === Backups locais === /backup/ diff --git a/next.config.ts b/next.config.ts index 09c5cde..a3b3f2d 100644 --- a/next.config.ts +++ b/next.config.ts @@ -8,7 +8,6 @@ const nextConfig: NextConfig = { output: "standalone", cacheComponents: true, reactCompiler: true, - images: { remotePatterns: [ new URL("https://lh3.googleusercontent.com/**"), diff --git a/tsconfig.json b/tsconfig.json index 47be581..5faf7d4 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,8 +1,7 @@ { "compilerOptions": { - "ignoreDeprecations": "6.0", "baseUrl": ".", - "target": "ES2017", + "target": "ES2022", "lib": ["dom", "dom.iterable", "esnext"], "allowJs": true, "skipLibCheck": true,