mirror of
https://github.com/xtr-dev/payload-notifications.git
synced 2025-12-10 19:03:23 +00:00
44 lines
844 B
JSON
44 lines
844 B
JSON
{
|
|
"extends": "../tsconfig.json",
|
|
"exclude": [],
|
|
"include": [
|
|
"**/*.js",
|
|
"**/*.jsx",
|
|
"**/*.mjs",
|
|
"**/*.cjs",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"next.config.mjs",
|
|
".next/types/**/*.ts"
|
|
],
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
"rootDir": "./",
|
|
"paths": {
|
|
"@payload-config": [
|
|
"./payload.config.ts"
|
|
],
|
|
"@xtr-dev/payload-notifications": [
|
|
"../src/index.ts"
|
|
],
|
|
"@xtr-dev/payload-notifications/client": [
|
|
"../src/exports/client.ts"
|
|
],
|
|
"@xtr-dev/payload-notifications/rsc": [
|
|
"../src/exports/rsc.ts"
|
|
]
|
|
},
|
|
"noEmit": true,
|
|
"emitDeclarationOnly": false,
|
|
"allowJs": true,
|
|
"incremental": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
]
|
|
}
|
|
}
|