mirror of
https://github.com/directus/directus.git
synced 2026-01-15 01:18:03 -05:00
* Move API entrypoint to typescipt * Remove explicit cli exort from API The "./*" export should export all subpaths, so explicitly exporting the cli shouldn't be necessary. * Remove dedicated start script from API This script isn't even included in the final npm package and it's only used by the test Dockerfile.
4 lines
104 B
TypeScript
4 lines
104 B
TypeScript
export { default as createApp } from './app';
|
|
export * from './services';
|
|
export * from './exceptions';
|