46 lines
1.2 KiB
JSON
46 lines
1.2 KiB
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"composite": true, // Make sure typescript knows that this module depends on their references
|
|
"noEmit": false /* Do not emit outputs. */,
|
|
"emitDeclarationOnly": true,
|
|
"outDir": "./dist" /* Specify an output folder for all emitted files. */,
|
|
"rootDir": "./src" /* Specify the root folder within your source files. */,
|
|
"sourceMap": true,
|
|
"paths": {
|
|
"@payloadcms/graphql": ["../graphql/src"],
|
|
"@payloadcms/ui": ["../ui/src/exports/index.ts"],
|
|
"@payloadcms/translations/*": ["../translations/dist/*"]
|
|
},
|
|
"allowImportingTsExtensions": true
|
|
},
|
|
"exclude": [
|
|
"dist",
|
|
"build",
|
|
"tests",
|
|
"test",
|
|
"node_modules",
|
|
".eslintrc.js",
|
|
"src/**/*.spec.js",
|
|
"src/**/*.spec.jsx",
|
|
"src/**/*.spec.ts",
|
|
"src/**/*.spec.tsx"
|
|
],
|
|
"include": [
|
|
"src/translations/*.json",
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"src/**/*.d.ts",
|
|
"src/**/*.json",
|
|
"../ui/src/createClientConfig.ts",
|
|
"../../app/(payload)/admin/login/action.ts",
|
|
"../payload/src/auth/cookies.ts"
|
|
],
|
|
"references": [
|
|
{ "path": "../payload" },
|
|
{ "path": "../ui" },
|
|
{ "path": "../translations" },
|
|
{ "path": "../graphql" }
|
|
]
|
|
}
|