diff options
author | fenn-cs <fenn25.fn@gmail.com> | 2024-03-03 11:48:43 +0100 |
---|---|---|
committer | fenn-cs <fenn25.fn@gmail.com> | 2024-03-07 20:19:29 +0100 |
commit | 0fd31cdb4c1fb26bf5cd7645d4a187237687049d (patch) | |
tree | 6d3e5a126bc477c6d42fb462df6b78096c24b7e6 /webpack.modules.js | |
parent | 20953d0374f434e0901c231f757751b954efca4d (diff) | |
download | nextcloud-server-0fd31cdb4c1fb26bf5cd7645d4a187237687049d.tar.gz nextcloud-server-0fd31cdb4c1fb26bf5cd7645d4a187237687049d.zip |
refactor: use TypeScript for unified-search boostrap file
This would allow us to type guard what is sent to`registerFilterAction`
for unified search, so that incompatibilties are caught quickly.
Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
Diffstat (limited to 'webpack.modules.js')
-rw-r--r-- | webpack.modules.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webpack.modules.js b/webpack.modules.js index c6662e7ee81..2ef663376c5 100644 --- a/webpack.modules.js +++ b/webpack.modules.js @@ -37,7 +37,7 @@ module.exports = { profile: path.join(__dirname, 'core/src', 'profile.ts'), recommendedapps: path.join(__dirname, 'core/src', 'recommendedapps.js'), systemtags: path.resolve(__dirname, 'core/src', 'systemtags/merged-systemtags.js'), - 'unified-search': path.join(__dirname, 'core/src', 'unified-search.js'), + 'unified-search': path.join(__dirname, 'core/src', 'unified-search.ts'), 'legacy-unified-search': path.join(__dirname, 'core/src', 'legacy-unified-search.js'), 'unsupported-browser': path.join(__dirname, 'core/src', 'unsupported-browser.js'), 'unsupported-browser-redirect': path.join(__dirname, 'core/src', 'unsupported-browser-redirect.js'), |