63 lines
1.3 KiB
JSON
63 lines
1.3 KiB
JSON
{
|
|
"compilerOptions": {
|
|
/* Strictness */
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noImplicitOverride": true,
|
|
"composite": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"target": "ES2022",
|
|
"rootDir": "${configDir}/src",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"jsx": "preserve",
|
|
"lib": [
|
|
"DOM",
|
|
"DOM.Iterable",
|
|
"ES2022"
|
|
],
|
|
"outDir": "${configDir}/dist",
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"emitDeclarationOnly": true,
|
|
"sourceMap": true,
|
|
"types": [
|
|
"node"
|
|
],
|
|
"incremental": true,
|
|
"isolatedModules": true,
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"paths": {
|
|
"@payloadcms/ui": [
|
|
"./packages/ui/src/index.tsx"
|
|
],
|
|
"@payloadcms/next/*": [
|
|
"./packages/next/src/exports/*.ts"
|
|
],
|
|
"@payloadcms/next": [
|
|
"./packages/next/src/exports/*"
|
|
]
|
|
},
|
|
"noEmit": true
|
|
},
|
|
"include": [
|
|
"${configDir}/src",
|
|
".next/types/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"${configDir}/dist",
|
|
"${configDir}/build",
|
|
"${configDir}/temp",
|
|
"**/*.spec.ts"
|
|
]
|
|
}
|