- Implemented ComfyGenerateRequest type and associated functions for generating images using various architectures and modes. - Added functions for listing generation options and handling image uploads. - Created workflows for different generation modes including SDXL, Z-Image, Z-Image Turbo, and Anima. - Introduced GenerationJobStatus component to display the status of ongoing generation jobs. - Developed MaskControls for managing mask operations and displaying mask analysis. - Created palette items for tool selection, layer management, and generation settings.
47 lines
1.2 KiB
JSON
47 lines
1.2 KiB
JSON
{
|
|
"compilerOptions": {
|
|
// Environment setup & latest features
|
|
"lib": ["ESNext", "DOM"],
|
|
"target": "ESNext",
|
|
"module": "Preserve",
|
|
"moduleDetection": "force",
|
|
"jsx": "react-jsx",
|
|
"allowJs": true,
|
|
"types": ["bun", "react"],
|
|
|
|
// Bundler mode
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"verbatimModuleSyntax": true,
|
|
"noEmit": true,
|
|
|
|
// Best practices
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noImplicitOverride": true,
|
|
|
|
"paths": {
|
|
"@/*": ["./view/*"],
|
|
"@view/*": ["./view/*"],
|
|
"@core/*": ["./core/*"],
|
|
"@renderer/*": ["./renderer/*"],
|
|
"@commands/*": ["./commands/*"],
|
|
"@editor/*": ["./editor/*"],
|
|
"@input/*": ["./input/*"],
|
|
"@app/*": ["./app/*"],
|
|
"@operations/*": ["./operations/*"],
|
|
"@platform/*": ["./platform/*"],
|
|
"@server/*": ["./server/*"]
|
|
},
|
|
|
|
// Some stricter flags (disabled by default)
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noPropertyAccessFromIndexSignature": false
|
|
},
|
|
|
|
"exclude": ["dist", "node_modules"]
|
|
}
|