fix(signing): add minimal signer tsconfig/src to satisfy Docker COPY; allow full rebuild

This commit is contained in:
Debian 2025-09-04 19:59:42 +00:00
parent 0be31e4b4e
commit e4c6979bd0
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,6 @@
export function sdkSignerInit(): void {
// Minimal placeholder to satisfy build during initial integration
}
export default sdkSignerInit;

View File

@ -0,0 +1,12 @@
{
"compilerOptions": {
"target": "ES2019",
"module": "commonjs",
"outDir": "./dist",
"rootDir": "./src",
"esModuleInterop": true,
"strict": false
},
"include": ["src/**/*"]
}