mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-02-20 07:37:26 -05:00
- Introduced a new file type definition for PLY 3D models in `misc.toml`. - Updated `package.json` to include dependencies for Gaussian splats and React Three Fiber. - Implemented a `MeshViewer` component for rendering 3D models, supporting both standard mesh and Gaussian splat formats. - Enhanced `ContentRenderer` to handle mesh file types with lazy loading for improved performance. - Updated TypeScript configuration to include types for React Three Fiber.
19 lines
359 B
JSON
19 lines
359 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/*"]
|
|
},
|
|
"types": ["@react-three/fiber"]
|
|
},
|
|
"include": ["src"]
|
|
}
|