forked from jitsi/jitsi-meet
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.web.json
More file actions
28 lines (28 loc) · 813 Bytes
/
tsconfig.web.json
File metadata and controls
28 lines (28 loc) · 813 Bytes
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
{
"include": ["react/features/**/*.ts", "react/features/**/*.tsx", "./custom.d.ts", "./globals.d.ts"],
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"module": "es2020",
"target": "es2024",
"jsx": "react",
"lib": [ "ES2024", "DOM" ],
"skipLibCheck": true,
"moduleResolution": "Node",
"strict": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"strictPropertyInitialization": false,
"resolveJsonModule": true,
"moduleSuffixes": [".web", ""]
},
"exclude": [
"node_modules",
"react/features/share-room",
"**/mobile/*",
"**/native/*",
"**/*.native.ts",
"**/*.native.tsx",
"**/*.ios.ts",
"**/*.android.ts"
]
}