@webdisrupt/persona
Version:
Store local data in a secure data vault.
11 lines • 688 B
text/typescript
const defaults = {
appName: "default", // The default application name
path: "C:\\personas", // Current Personas folder location
ext: ".persona", // The common extention for personas data files
blockExt: ".pstore", // Default Storage block extention .pstore
root: "root.persona", // The root file naming convention
system: "system.persona", // Used for storing non-user related persistent data
cache: "system.cache", // Used for storing non-user related cahcing data
versionName: "pstore.ver", // Tracks storage block directory freshness
}
export { defaults }