fast-r2
Version:
A Node.js module to simplify Cloudflare R2 interactions, providing an instance-based API for uploads, deletions, and URL generation.
21 lines • 717 B
JSON
// fast-r2/tsconfig.json
{
"compilerOptions": {
"target": "ES2020",
"module": "CommonJS",
"lib": ["ES2020"],
"declaration": true,
"emitDeclarationOnly": false,
"outDir": "./dist",
"rootDir": "./src", // This remains './src' as it's the root for source files
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"checkJs": true,
"types": ["node", "jest"]
},
"include": ["src/**/*.ts", "src/**/*.js"], // REMOVED: "test/**/*.ts"
"exclude": ["node_modules", "dist", "test"] // ADDED: "test" to exclude from explicit compilation
}