* Make apps/web/playwright comply with strict mode Otherwise it sometimes fails to compile matrix-js-sdk as strict mode & noImplicitAny both impact how overloads are asserted * Iterate
23 lines
648 B
JSON
23 lines
648 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2022",
|
|
"jsx": "react",
|
|
"lib": ["es2024", "dom", "dom.iterable"],
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "bundler",
|
|
"module": "ESNext",
|
|
"allowImportingTsExtensions": true,
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"types": ["node"],
|
|
"noEmit": true
|
|
},
|
|
"include": [
|
|
"**/*.ts",
|
|
"../src/@types/matrix-js-sdk.d.ts",
|
|
"../node_modules/matrix-js-sdk/src/@types/*.d.ts",
|
|
"../node_modules/matrix-js-sdk/node_modules/@matrix-org/olm/index.d.ts"
|
|
]
|
|
}
|