Files
2026-05-30 22:47:36 +08:00

6 lines
291 B
TypeScript

import jquery from 'jquery'; // eslint-disable-line no-restricted-imports
// Some users still use inline scripts and expect jQuery to be available globally.
// To avoid breaking existing users and custom plugins, import jQuery globally without ES module.
window.$ = window.jQuery = jquery;