mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-17 21:17:08 -04:00
23 lines
558 B
JSON
23 lines
558 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"target": "ES2022",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["./src/*"],
|
|
"@spacebot/api-client": [
|
|
"../../../spacebot/packages/api-client/src/index.ts"
|
|
],
|
|
"@spacebot/api-client/*": ["../../../spacebot/packages/api-client/src/*"]
|
|
},
|
|
"types": ["@react-three/fiber"]
|
|
},
|
|
"include": ["src", "src/vite-env.d.ts"]
|
|
}
|