d24c5d8b2b
Switch typescript lib to es2024 and make necessary type changes Fixes https://github.com/matrix-org/matrix-js-sdk/issues/4796 Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
17 lines
434 B
JSON
17 lines
434 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2022",
|
|
"experimentalDecorators": false,
|
|
"esModuleInterop": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"noUnusedLocals": true,
|
|
"noEmit": true,
|
|
"declaration": true,
|
|
"strict": true,
|
|
"allowImportingTsExtensions": true,
|
|
"lib": ["es2024"]
|
|
},
|
|
"include": ["./src/**/*.ts", "./spec/**/*.ts"]
|
|
}
|