Files
jitsi-meet/tsconfig.web.json
Robert Pintilii 442ae6c3cb chore(TS): Create web tsconfig (#12381)
* fix(ts,connection) avoid mixing web and native code

* chore(ts) split config

The mobile part is still WIP.

* Remove default tsconfig

* Fix ts-loader - use web tsconfig

* Fix tsconfig

Use noEmit only on npm scripts (for type checking), but don't use it in webpack

* Fix

* Fix import

* Fix

Co-authored-by: Saúl Ibarra Corretgé <saghul@jitsi.org>
2022-10-18 11:21:48 -05:00

25 lines
697 B
JSON

{
"include": ["react/features/**/*.ts", "react/features/**/*.tsx", "./custom.d.ts", "./globals.d.ts"],
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"module": "es6",
"target": "es6",
"jsx": "react",
"lib": [ "webworker", "ES2020", "DOM" ],
"skipLibCheck": true,
"moduleResolution": "Node",
"strict": true,
"noImplicitAny": true,
"strictPropertyInitialization": false,
"resolveJsonModule": true,
"moduleSuffixes": [".web", ""]
},
"exclude": [
"node_modules",
"**/mobile/*",
"**/native/*",
"**/*.native.ts",
"**/*.native.tsx"
]
}