feat(core): Added type paths configuration for TypeScript, improved BelliniClient with optional API endpoint and publicationName, and refined imports with JavaScript extensions.

This commit is contained in:
2025-02-03 14:12:23 +01:00
parent 189b642721
commit f1b1bdb35a
11 changed files with 130 additions and 21 deletions

8
ts/00_commitinfo_data.ts Normal file
View File

@ -0,0 +1,8 @@
/**
* autocreated commitinfo by @push.rocks/commitinfo
*/
export const commitinfo = {
name: '@bellini.io/bellini',
version: '1.1.0',
description: 'the bellini main application'
}

View File

@ -1,2 +1,12 @@
const removeme = {};
export { removeme };
// @api.global scope
import * as typedserver from '@api.global/typedserver';
import * as typedrequestInterfaces from '@api.global/typedrequest-interfaces';
export { typedserver, typedrequestInterfaces };
// @push.rocks scope
import * as smartdelay from '@push.rocks/smartdelay';
export {
}