UNPKG

json-config-ts

Version:

Easy-to-use config storage via JSON with optional base-64 encryption for sensitive data

16 lines (15 loc) 398 B
"use strict"; /** * Store Path */ Object.defineProperty(exports, "__esModule", { value: true }); exports.errorMessages = exports.storePath = void 0; exports.storePath = '.json_config'; /** * Errors */ exports.errorMessages = { nameError: 'Argument "name" must be a non-empty string', objectError: 'Argument must be an object', stringError: 'Argument must be a non-empty string', };