14 lines
504 B
JSON
14 lines
504 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"module": "CommonJS",
|
|
"composite": true, // Required for references to work
|
|
"noEmit": false /* Do not emit outputs. */,
|
|
"emitDeclarationOnly": true,
|
|
"outDir": "./dist/cjs" /* Specify an output folder for all emitted files. */,
|
|
"rootDir": "./src" /* Specify the root folder within your source files. */,
|
|
"sourceMap": true
|
|
},
|
|
"include": ["src/withPayload.js" /* Include the withPayload.js file in the build */]
|
|
}
|