Add initial plugin implementation and development setup

This commit is contained in:
2025-09-13 17:06:45 +02:00
parent 45fe248bf3
commit 74cef91401
52 changed files with 16645 additions and 0 deletions

43
dev/tsconfig.json Normal file
View File

@@ -0,0 +1,43 @@
{
"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"
}
]
}
}