@sophat/sessions
Version:
A TypeScript utility library for managing browser session storage with a simple API. Provides methods to set, get, update, remove, and clear session storage items, plus key enumeration. Ideal for client-side state management and data persistence in web ap
29 lines • 789 B
JSON
{
"ts-node": {
"compilerOptions": {
"module": "CommonJS"
}
},
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"lib": ["DOM", "ES2020"],
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
"moduleResolution": "node",
"sourceMap": false,
// "baseUrl": ".",
// "paths": {
// "@utils/*": ["src/utils/*"],
// "@types/*": ["src/types/*"],
// "@interfaces/*": ["src/interfaces/*"],
// }
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "tests"]
}