Files
jitsi-meet/tsconfig.native.json
Robert Pintilii 00780929e5 feat(tooltip) Create and move to our component (#13061)
Create Tooltip component
Fix Popover positioning calculations
Add margins to popover
Remove @atlaskit/tooltip
Update all components to use the new Tooltip component

Added tooltip actions and reducers for the following functionality: when a user hovers over an element is sees the tooltip for that element and then hovers another element that has a tooltip, instead of using the delay and animations we just unmount the current tooltip and mount the next one immediately
2023-03-17 12:23:51 +02:00

42 lines
1.5 KiB
JSON

{
"include": ["react/features/**/*.ts", "react/features/**/*.tsx", "./custom.d.ts", "./globals.native.d.ts"],
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"target": "es2020",
"jsx": "react-native",
"lib": [ "es2020"],
"types": [ "react-native" ],
"skipLibCheck": true,
"moduleResolution": "Node",
"strict": true,
"noImplicitAny": true,
"strictPropertyInitialization": false,
"resolveJsonModule": true,
"moduleSuffixes": [".native", ".ios", ".android", ""]
},
"exclude": [
"node_modules",
"react/features/analytics/handlers/GoogleAnalyticsHandler.ts",
"react/features/base/components/participants-pane-list",
"react/features/base/tooltip",
"react/features/connection-stats",
"react/features/desktop-picker",
"react/features/e2ee",
"react/features/embed-meeting",
"react/features/face-landmarks",
"react/features/feedback",
"react/features/no-audio-signal",
"react/features/noise-suppression",
"react/features/old-client-notification",
"react/features/screen-share",
"react/features/stream-effects/noise-suppression",
"react/features/stream-effects/rnnoise",
"react/features/virtual-background",
"react/features/web-hid",
"react/features/whiteboard",
"**/web/*",
"**/*.web.ts",
"**/*.web.tsx"
]
}