Files
npmcdn/test/devserver.ts
2022-01-06 01:20:03 +01:00

10 lines
301 B
TypeScript

import { UiPublicServer } from '../ts';
export const defaultPublicServer = new UiPublicServer({
port: 3000,
packageBaseDirectory: './ts',
npmRegistryUrl: 'https://registry.npmjs.org',
allowedPackages: ['@pushrocks/smartfile', '@pushrocks/smarturl', '@pushrocks/notthere'],
mode: 'dev',
});