build(config): add path alias for api-contracts in compute-core

Update tsconfig.json to include a path mapping for
@openreader/compute-core/api-contracts, enabling cleaner imports and
improving modularity for API contract usage across the codebase.
This commit is contained in:
Richard R 2026-05-25 12:00:31 -06:00
parent e70b3619e0
commit 52083c6a09

View file

@ -21,6 +21,7 @@
"paths": {
"@/*": ["./src/*"],
"@openreader/compute-core": ["./compute/core/src/index.ts"],
"@openreader/compute-core/api-contracts": ["./compute/core/src/api-contracts/index.ts"],
"@openreader/compute-core/local-runtime": ["./compute/core/src/local-runtime.ts"],
"@openreader/compute-core/types": ["./compute/core/src/types/index.ts"]
}