2022-10-18 19:21:48 +03:00
|
|
|
{
|
|
|
|
|
"include": ["react/features/**/*.ts", "react/features/**/*.tsx", "./custom.d.ts", "./globals.native.d.ts"],
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2023-02-07 16:18:27 +02:00
|
|
|
"target": "es2020",
|
2022-10-18 19:21:48 +03:00
|
|
|
"jsx": "react-native",
|
2024-10-22 14:23:27 +02:00
|
|
|
"lib": [ "ES2020", "ES2024.Promise" ],
|
2022-10-18 19:21:48 +03:00
|
|
|
"types": [ "react-native" ],
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"moduleResolution": "Node",
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"strictPropertyInitialization": false,
|
|
|
|
|
"resolveJsonModule": true,
|
2022-10-21 14:09:15 +03:00
|
|
|
"moduleSuffixes": [".native", ".ios", ".android", ""]
|
2022-10-18 19:21:48 +03:00
|
|
|
},
|
|
|
|
|
"exclude": [
|
|
|
|
|
"node_modules",
|
2023-05-12 10:28:50 +03:00
|
|
|
"react/features/always-on-top",
|
2022-10-18 19:21:48 +03:00
|
|
|
"react/features/base/components/participants-pane-list",
|
2023-03-17 12:23:51 +02:00
|
|
|
"react/features/base/tooltip",
|
2022-10-18 19:21:48 +03:00
|
|
|
"react/features/connection-stats",
|
2022-10-21 14:09:15 +03:00
|
|
|
"react/features/desktop-picker",
|
2022-10-18 19:21:48 +03:00
|
|
|
"react/features/e2ee",
|
|
|
|
|
"react/features/embed-meeting",
|
|
|
|
|
"react/features/face-landmarks",
|
2024-10-03 18:12:46 -05:00
|
|
|
"react/features/keyboard-shortcuts",
|
2022-11-01 13:36:32 +01:00
|
|
|
"react/features/no-audio-signal",
|
2022-10-28 12:07:58 +02:00
|
|
|
"react/features/noise-suppression",
|
2022-11-23 11:12:26 +02:00
|
|
|
"react/features/old-client-notification",
|
2023-03-30 15:30:15 +03:00
|
|
|
"react/features/remote-control",
|
2022-10-18 19:21:48 +03:00
|
|
|
"react/features/screen-share",
|
2023-03-30 15:30:15 +03:00
|
|
|
"react/features/screenshot-capture",
|
2023-04-20 12:06:45 +03:00
|
|
|
"react/features/stream-effects",
|
2022-10-18 19:21:48 +03:00
|
|
|
"react/features/virtual-background",
|
2023-02-24 16:37:30 +02:00
|
|
|
"react/features/web-hid",
|
2022-10-21 14:09:15 +03:00
|
|
|
"react/features/whiteboard",
|
2022-10-18 19:21:48 +03:00
|
|
|
"**/web/*",
|
|
|
|
|
"**/*.web.ts",
|
|
|
|
|
"**/*.web.tsx"
|
|
|
|
|
]
|
|
|
|
|
}
|