wip library to store cold objects in s3, warm objects on disk, and hot objects in memory
nodejs
typescript
1{
2 "compilerOptions": {
3 "target": "ES2022",
4 "module": "ESNext",
5 "moduleResolution": "node",
6 "allowSyntheticDefaultImports": true,
7 "esModuleInterop": true,
8 "allowJs": true,
9 "strict": true,
10 "noImplicitAny": true,
11 "strictNullChecks": true,
12 "strictFunctionTypes": true,
13 "strictBindCallApply": true,
14 "strictPropertyInitialization": true,
15 "noImplicitReturns": true,
16 "noImplicitThis": true,
17 "noUncheckedIndexedAccess": true,
18 "noImplicitOverride": true,
19 "exactOptionalPropertyTypes": true,
20 "noPropertyAccessFromIndexSignature": false,
21 "declaration": true,
22 "declarationMap": true,
23 "sourceMap": true,
24 "outDir": "./dist",
25 "rootDir": "./src",
26 "removeComments": false,
27 "skipLibCheck": true,
28 "forceConsistentCasingInFileNames": true,
29 "resolveJsonModule": true
30 },
31 "include": ["src/**/*"],
32 "exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"]
33}