mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-02-20 07:37:26 -05:00
- 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.
19 lines
408 B
JSON
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"]
|
|
} |