forked from jitsi/jitsi-meet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.native.json
42 lines (42 loc) · 1.49 KB
/
tsconfig.native.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"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/always-on-top",
"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/no-audio-signal",
"react/features/noise-suppression",
"react/features/old-client-notification",
"react/features/remote-control",
"react/features/screen-share",
"react/features/screenshot-capture",
"react/features/stream-effects",
"react/features/virtual-background",
"react/features/web-hid",
"react/features/whiteboard",
"**/web/*",
"**/*.web.ts",
"**/*.web.tsx"
]
}