2022-04-08 15:24:58 +03:00
|
|
|
{
|
2022-09-19 10:40:03 +03:00
|
|
|
"include": ["react/features/**/*.ts", "react/features/**/*.tsx", "./custom.d.ts", "./globals.d.ts"],
|
2022-04-08 15:24:58 +03:00
|
|
|
"compilerOptions": {
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2023-02-07 16:18:27 +02:00
|
|
|
"module": "es2020",
|
2025-02-03 13:21:33 +01:00
|
|
|
"target": "es2024",
|
2022-04-08 15:24:58 +03:00
|
|
|
"jsx": "react",
|
2025-02-03 13:21:33 +01:00
|
|
|
"lib": [ "ES2024", "DOM" ],
|
2022-10-18 19:21:48 +03:00
|
|
|
"skipLibCheck": true,
|
2022-04-08 15:24:58 +03:00
|
|
|
"moduleResolution": "Node",
|
|
|
|
|
"strict": true,
|
2022-07-20 15:31:17 +03:00
|
|
|
"noImplicitAny": true,
|
2025-03-12 10:19:11 -05:00
|
|
|
"noImplicitOverride": true,
|
2022-08-01 10:14:54 +03:00
|
|
|
"strictPropertyInitialization": false,
|
2022-10-18 19:21:48 +03:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"moduleSuffixes": [".web", ""]
|
2022-04-08 15:24:58 +03:00
|
|
|
},
|
|
|
|
|
"exclude": [
|
2022-10-18 19:21:48 +03:00
|
|
|
"node_modules",
|
2022-12-14 14:23:07 +02:00
|
|
|
"react/features/share-room",
|
2022-10-18 19:21:48 +03:00
|
|
|
"**/mobile/*",
|
|
|
|
|
"**/native/*",
|
|
|
|
|
"**/*.native.ts",
|
2022-10-21 14:09:15 +03:00
|
|
|
"**/*.native.tsx",
|
|
|
|
|
"**/*.ios.ts",
|
|
|
|
|
"**/*.android.ts"
|
2022-04-08 15:24:58 +03:00
|
|
|
]
|
|
|
|
|
}
|