- React + Vite + TypeScript + Tailwind + shadcn/ui - AI crop engine (Google Gemini 2.5 Flash) + local edge-detection engine - Pixel size outputs with configurable dimensions per ratio - Import/export config (backward compatible with old Python SmartCrop configs) - Crop editor with fixed-frame zoom/pan - ZIP export with multi-size scaling - Montserrat font, #FFC407 gold theme Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
35 lines
No EOL
680 B
JSON
35 lines
No EOL
680 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowImportingTsExtensions": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-jsx",
|
|
"lib": [
|
|
"ES2020",
|
|
"DOM",
|
|
"DOM.Iterable"
|
|
],
|
|
"module": "ESNext",
|
|
"moduleDetection": "force",
|
|
"moduleResolution": "bundler",
|
|
"noEmit": true,
|
|
"noFallthroughCasesInSwitch": false,
|
|
"noImplicitAny": false,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
]
|
|
},
|
|
"skipLibCheck": true,
|
|
"strict": false,
|
|
"target": "ES2020",
|
|
"types": [
|
|
"vitest/globals"
|
|
],
|
|
"useDefineForClassFields": true
|
|
},
|
|
"include": [
|
|
"src"
|
|
]
|
|
} |