export interface ServerLoaderConfiguration { //The paths that will be made available on the server. serverPaths?: { [key: string]: string; }, node_modules?: { //Path to the server's package.json. If undefined then node_modules on the server will not be // overridden with local directories. server?: string | string[]; //If true, will try to load node_modules from a local registered folder instead of the node_modules folder. localMode?: boolean; } logging: "verbose" | "browser_verbose" | "silent" | "info" | "warning" | "error"; } export interface ClientLoaderConfiguration { //The paths that will be made available on the client. clientPaths?: { [key: string]: string; }, node_modules?: { //If true, will allow the client to load files from node_modules (the same way node does). //Needs to point to the client's package.json file. Undefined will cause client not to be used. client?: string | string[]; //If true, will try to load node_modules from a local registered folder instead of the node_modules folder. localMode?: boolean; } logging: "verbose" | "browser_verbose" | "silent" | "info" | "warning" | "error"; }