- Set up Next.js 16 with TypeScript and App Router - Configure Tailwind CSS for styling - Add ESLint and Prettier for code quality - Set up Jest and React Testing Library - Create basic project structure (app/, components/, lib/) - Add initial home page with WellNuo branding - Configure TypeScript with strict mode - All tests passing and linting clean 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
16 lines
333 B
JavaScript
16 lines
333 B
JavaScript
const nextJest = require('next/jest');
|
|
|
|
const createJestConfig = nextJest({
|
|
dir: './',
|
|
});
|
|
|
|
const customJestConfig = {
|
|
setupFilesAfterEnv: ['<rootDir>/jest.setup.js'],
|
|
testEnvironment: 'jest-environment-jsdom',
|
|
moduleNameMapper: {
|
|
'^@/(.*)$': '<rootDir>/$1',
|
|
},
|
|
};
|
|
|
|
module.exports = createJestConfig(customJestConfig);
|