mirror of
https://github.com/vector-im/element-web.git
synced 2026-05-04 19:56:45 +02:00
* Update dependency typescript to v6 * Switch to unplugin-vts Workaround for https://github.com/qmhc/unplugin-dts/issues/467 And tweak tsconfigs * tweak tsconfig * Make tsc happy --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
22 lines
647 B
JSON
22 lines
647 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2022",
|
|
"jsx": "react",
|
|
"lib": ["es2024", "dom", "dom.iterable"],
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "bundler",
|
|
"module": "ESNext",
|
|
"allowImportingTsExtensions": true,
|
|
"strictNullChecks": false,
|
|
"noImplicitAny": false,
|
|
"types": ["node"]
|
|
},
|
|
"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"
|
|
]
|
|
}
|