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