All checks were successful
build-website / build (push) Successful in 2m37s
- Removed vue-archive directory containing old Nuxt code - Removed harborsmith-nextjs temporary directory - Updated tsconfig.json to exclude archived directories - Updated .dockerignore to exclude archived code - Updated .gitignore with proper Next.js patterns - Updated README.md to reflect current project structure Build now completes successfully without TypeScript errors. 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
28 lines
677 B
JSON
28 lines
677 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2017",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"incremental": true,
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"paths": {
|
|
"@/*": ["./*"]
|
|
}
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
|
"exclude": ["node_modules", "vue-archive", "harborsmith-nextjs"]
|
|
} |