Files
spacedrive/packages/interface/tsconfig.json
Jamie Pine 98a55b83af feat: add contributors list and update settings page
- Introduced a new contributors.json file containing a list of contributors with their GitHub usernames.
- Updated AboutSettings component to display the list of contributors dynamically.
- Modified tsconfig.json to enable JSON module resolution for better imports.
- Enhanced Cargo.toml to include JSON feature for reqwest.
- Added a new Rust module to fetch and update the contributors list from GitHub.
2026-02-06 01:46:39 -08:00

19 lines
408 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"composite": true,
"noEmit": true,
"jsx": "react-jsx",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"module": "ESNext",
"target": "ES2022",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"baseUrl": ".",
"paths": {
"~/*": ["./src/*"]
},
"types": ["@react-three/fiber"]
},
"include": ["src", "src/vite-env.d.ts"]
}