mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-02-20 07:37:26 -05:00
This commit modifies the TypeScript configuration to include the `src/vite-env.d.ts` file, ensuring proper type definitions are recognized. Additionally, several components have been restructured, including the introduction of new Inspector components and the removal of deprecated demo files. The changes improve the organization and maintainability of the codebase, while also enhancing the overall component architecture.
18 lines
379 B
JSON
18 lines
379 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", "src/vite-env.d.ts"]
|
|
} |