siegel
Version:
Web application development ecosystem
35 lines (34 loc) • 1.09 kB
TypeScript
declare const LOC_NAMES: {
readonly PACKAGE_JSON: "package.json";
readonly NODE_MODULES: "node_modules";
readonly ESLINT_CONFIG_JS: "eslint.config.js";
readonly TS_JSON: "tsconfig.json";
readonly TS_GLOBAL_TYPES: "global.d.ts";
readonly CLIENT_CORE_DIR_NAME: "client_core";
readonly SRC_DIR_NAME: "core";
readonly UTILS_DIR_NAME: "common";
readonly BIN_DIR_NAME: "bin";
readonly LIB_OUTPUT_DIRNAME: "lib";
readonly DEMO_MINI_APP_DIR_NAME: "demo_app_minimal";
readonly DEMO_APP_DIR_NAME: "demo_app";
readonly DEMO_APP_OUTPUT_DIR_NAME: "dist";
};
declare const PATHS: {
cwd: string;
packageRoot: string;
cwdNodeModules: string;
packageJSON: string;
nodeModules: string;
sharedUtils: string;
sharedUtilsOutput: string;
clientCore: string;
clientCoreOutput: string;
src: string;
srcOutput: string;
binOutput: string;
demoMiniProject: string;
demoProject: string;
demoProjectOutput: string;
};
declare const IS_SELF_DEVELOPMENT: boolean;
export { PATHS, LOC_NAMES, IS_SELF_DEVELOPMENT };