mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
* Update jimp, use WASM format plugins * Fix Jimp import path in thumbnails endpoint * Fix size variable * Add fetch patch to handle file URLs * Fix JPEG thumbnailing * Enhance fetch patch to validate file paths and support specific extensions * Add default msBmp format * Update jsconfig * Update JPEG color space in thumbnail generation to YCbCr * Install jimp plugins explicitly * Refactor fetch patch utility functions
26 lines
610 B
JSON
26 lines
610 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"target": "ES2023",
|
|
"moduleResolution": "Bundler",
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"checkJs": true,
|
|
"allowUmdGlobalAccess": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"strictBindCallApply": true
|
|
},
|
|
"exclude": [
|
|
"**/node_modules/**",
|
|
"**/dist/**",
|
|
"**/.git/**",
|
|
"public/**",
|
|
"backups/**",
|
|
"data/**",
|
|
"cache/**",
|
|
"src/tokenizers/**",
|
|
"docker/**"
|
|
]
|
|
}
|