mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 20:01:09 +02:00
- Remove archived LIGHTWRITE and NUTRIPHI from BUCKETS - Add missing PLANTA and PROJECTDOC buckets (were in Docker init but not in code) - Add maxSizeBytes option to upload() and uploadMultipart() for size enforcement - Add deleteMany() with automatic batching (1000 keys per S3 request) - Add factories for createPlantaStorage() and createProjectDocStorage() - Update tests (62 passing) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
16 lines
330 B
JSON
16 lines
330 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "CommonJS",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"outDir": "./dist",
|
|
"rootDir": "./src"
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|