components-export: ExportPanel (scope picker + request) + ExportJobRow (status, download on ready, error verbatim; timer lives in the app per the polling contract). Demo Export tab polls getExport app-side. Lib confirmed self-contained (react + lucide only); README/tsconfig updated. Typechecks clean. Co-Authored-By: Claude Fable 5 (build) <noreply@anthropic.com>
24 lines
799 B
JSON
24 lines
799 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"jsx": "react-jsx",
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowImportingTsExtensions": true,
|
|
"baseUrl": ".",
|
|
"types": [],
|
|
"paths": {
|
|
"react": ["../arcadia-personal-cloud-web/node_modules/@types/react/index.d.ts"],
|
|
"react/jsx-runtime": ["../arcadia-personal-cloud-web/node_modules/@types/react/jsx-runtime.d.ts"],
|
|
"react-dom": ["../arcadia-personal-cloud-web/node_modules/@types/react-dom/index.d.ts"],
|
|
"lucide-react": ["../arcadia-personal-cloud-web/node_modules/lucide-react/dist/lucide-react.d.ts"]
|
|
}
|
|
},
|
|
"include": ["src", "demo"]
|
|
}
|