feat: Create image pipeline

This commit is contained in:
Wanjohi
2025-06-04 13:50:06 +03:00
parent e67a8d2b32
commit 0124af1b70
9 changed files with 289 additions and 6 deletions

View File

@@ -1 +1,22 @@
{}
{
"compilerOptions": {
"lib": [
"ESNext"
],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
/* Linting */
"skipLibCheck": true,
"strict": true,
"noFallthroughCasesInSwitch": true,
"forceConsistentCasingInFileNames": true
}
}