mirror of
https://github.com/vector-im/element-web.git
synced 2026-07-03 13:58:59 +00:00
f9343e5458
* Fix desktop registering protocol handler wrong Was previously registering with too many args and was also only handling deeplinks if the app was already open, on a cold start they would be blindly ignored. Tests aplenty * Refactor Desktop config to avoid global and centralise defaults * Improve coverage * Fix tests * Improve coverage * Fix test * Rename field * Improve coverage * Rename field * Move protocolHandler initialisation to after mainWindow is navigating * Add comment * Avoid double call to loadURL * Improve coverage * Improve coverage * Fix tsc
17 lines
451 B
JSON
17 lines
451 B
JSON
{
|
|
"compilerOptions": {
|
|
"resolveJsonModule": true,
|
|
"module": "nodenext",
|
|
"moduleResolution": "NodeNext",
|
|
"target": "es2022",
|
|
"lib": ["es2024"],
|
|
"sourceMap": false,
|
|
"typeRoots": [],
|
|
"types": [],
|
|
"skipLibCheck": true,
|
|
"noEmit": true,
|
|
"strict": true
|
|
},
|
|
"include": ["./electron-builder.ts", "./vitest.config.ts", "./src/**/*.d.ts", "./src/**/*.test.ts"]
|
|
}
|