Compare commits

...

2 Commits

Author SHA1 Message Date
50c2e5f427 Ensure that the ApiErrorCode type is exported
All checks were successful
Publish Package / build-and-publish (push) Successful in 11s
2026-04-28 17:52:45 +01:00
eb8bee65d9 Fix module res?
All checks were successful
Publish Package / build-and-publish (push) Successful in 7s
2026-04-27 23:48:08 +01:00
2 changed files with 3 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
export { OwlBoardClient } from './lib/client.js'; export { OwlBoardClient } from './lib/client.js';
export { ValidationError, ApiError } from './lib/errors.js'; export { ValidationError, ApiError, type ApiErrorCode } from './lib/errors.js';
// Re-export API Schema types // Re-export API Schema types
export type * from '@owlboard/api-schema-types' export type * from '@owlboard/api-schema-types'

View File

@@ -7,9 +7,9 @@
// Environment Settings // Environment Settings
// See also https://aka.ms/tsconfig/module // See also https://aka.ms/tsconfig/module
"module": "esnext", "module": "nodenext",
"target": "esnext", "target": "esnext",
"moduleResolution": "bundler", "moduleResolution": "nodenext",
"baseUrl": ".", "baseUrl": ".",
"types": [], "types": [],
// For nodejs: // For nodejs: