- Add ShareRoomPicker component for selecting rooms to share Android intents. - Introduce AndroidShare utility for handling shared files and payloads from Android. - Implement background synchronization with UnifiedPush for Android notifications. - Enhance notification handling in Tauri and Capacitor environments. - Update TypeScript configuration for better module resolution. - Create Capacitor configuration file for Android integration. - Add SVG icon for notifications. - Refactor media URL authentication checks in matrix utility.
20 lines
420 B
JSON
20 lines
420 B
JSON
{
|
|
"compilerOptions": {
|
|
"sourceMap": true,
|
|
"jsx": "react",
|
|
"target": "ES2016",
|
|
"module": "ES2020",
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"outDir": "dist",
|
|
"rootDir": "./src",
|
|
"skipLibCheck": true,
|
|
"lib": ["ES2016", "DOM"]
|
|
},
|
|
"exclude": ["node_modules", "dist"],
|
|
"include": ["src"]
|
|
}
|