* chore: remove all references to PayloadCMS * fix: nextjs landing utils * feat: refactor community, features, hero, learning resources, and testimonials components to use external JSON data * fix:remove hero logo box * fix: remove unused image in public * fix: change logo.png to logo.webp * fix: update button styles for improved visibility * chore: restructure component organization * fix: update import path for global styles in layout component * fix: adjust alignment of hero stats section for better layout * fix: update testimonials placeholder sample data * fix: update header component to use router for navigation and add signin page
44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"jsx": "preserve",
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"emitDeclarationOnly": false,
|
|
"esModuleInterop": true,
|
|
"target": "ES2022",
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"incremental": true,
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@components": ["../../libs/shadcn-ui/src/atoms/index.ts"],
|
|
"@utils": ["../../libs/shadcn-ui/src/lib/index.ts"],
|
|
"@schemas": ["../../libs/service/src/schemas/index.ts"],
|
|
"@/*": ["src/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"**/*.js",
|
|
"**/*.jsx",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"../../apps/landing/.next/types/**/*.ts",
|
|
"../../dist/apps/landing/.next/types/**/*.ts",
|
|
"next-env.d.ts",
|
|
".next/types/**/*.ts"
|
|
],
|
|
"exclude": ["node_modules", "jest.config.ts", "**/*.spec.ts", "**/*.test.ts"]
|
|
}
|