* feat: integrate payload cms to landing page * feat: add payload configuration and update TypeScript target * fix: update TypeScript paths for payload configuration * refactor: update config import paths to use local payload.config * fix: update quotation marks for testimonials to use HTML entities * fix: include withPayload in Next.js plugins for proper configuration
46 lines
934 B
JSON
46 lines
934 B
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"
|
|
}
|
|
]
|
|
},
|
|
"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"
|
|
]
|
|
}
|