Files
spacedrive/packages/interface/tsconfig.json
Jamie Pine 5d1457d24d Refactor: Update TypeScript configuration and enhance component structure
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.
2026-01-07 16:51:22 -08:00

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"]
}