mirror of
https://github.com/ianarawjo/ChainForge.git
synced 2025-03-14 16:26:45 +00:00
* Refactor: modularize response boxes into a separate component * Type store.js. Change info to vars. NOTE: This may break backwards compat. * Refactor addNodes in App.tsx to be simpler. * Turn AlertModal into a Provider with useContext * Remove fetch_from_backend. * Add build/ to gitignore * Add support for image models and add Dall-E models. * Better rate limiting with Bottleneck * Fix new Chrome bug with file import readers not appearing as arrays; and fix bug with exportCache * Add ability to add custom right-click context menu items per node * Convert to/from TF and Items nodes * Add lazyloader for images * Add compression to images by default before storing in cache * Add image compression toggle in Global Settings * Move Alert Provider to top level of index.js
21 lines
517 B
JSON
21 lines
517 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"lib": ["dom", "dom.iterable", "esnext", "WebWorker"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx"
|
|
},
|
|
"include": ["src"]
|
|
}
|