mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-21 06:59:17 -04:00
- Introduced new modules and actions for generating media proxies and thumbstrips, improving media handling capabilities. - Added configuration, error handling, and processing logic for both proxy and thumbstrip generation. - Updated existing media operations to integrate new functionalities, ensuring seamless media processing and user experience. - Enhanced tests to cover new features and ensure reliability in media operations.
18 lines
324 B
JSON
18 lines
324 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"target": "ES2022",
|
|
"moduleResolution": "bundler",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["src"]
|
|
}
|