- Successfully installed @opennextjs/cloudflare v1.15.1 - Fixed Vitest configuration to exclude e2e tests - Renamed e2e test files from .spec.ts to .e2e.ts to avoid Bun test runner conflicts - Updated eslint.config.mjs and playwright.config.ts - All tests passing: Vitest (1/1), Playwright (6/6) - Production bundle size: ~5MB < 10MiB limit - Marked TODO 0 complete in plan
21 lines
516 B
JavaScript
21 lines
516 B
JavaScript
import { defineConfig, globalIgnores } from "eslint/config";
|
|
import nextVitals from "eslint-config-next/core-web-vitals";
|
|
import nextTs from "eslint-config-next/typescript";
|
|
|
|
const eslintConfig = defineConfig([
|
|
...nextVitals,
|
|
...nextTs,
|
|
// Override default ignores of eslint-config-next.
|
|
globalIgnores([
|
|
// Default ignores of eslint-config-next:
|
|
".next/**",
|
|
"out/**",
|
|
"build/**",
|
|
"next-env.d.ts",
|
|
"test-results/**",
|
|
"playwright-report/**",
|
|
]),
|
|
]);
|
|
|
|
export default eslintConfig;
|