21 lines
652 B
JSON
21 lines
652 B
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. */,
|
|
"strict": true,
|
|
},
|
|
"exclude": [
|
|
"dist",
|
|
"node_modules",
|
|
],
|
|
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.d.ts", "src/**/*.json"],
|
|
"references": [
|
|
{ "path": "../payload" },
|
|
{ "path": "../plugin-cloud-storage" },
|
|
]
|
|
}
|