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