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,
|
|
|
|
|
"module": "es6",
|
|
|
|
|
"target": "es6",
|
|
|
|
|
"jsx": "react",
|
2022-05-06 15:41:08 +03:00
|
|
|
"lib": [ "webworker", "ES2020", "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,
|
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",
|
|
|
|
|
"**/mobile/*",
|
|
|
|
|
"**/native/*",
|
|
|
|
|
"**/*.native.ts",
|
|
|
|
|
"**/*.native.tsx"
|
2022-04-08 15:24:58 +03:00
|
|
|
]
|
|
|
|
|
}
|