src/js/init.js
author ymh <ymh.work@gmail.com>
Wed, 04 Sep 2024 17:32:50 +0200
changeset 1072 ac1eacb3aa33
parent 1016 e1752b696a07
permissions -rw-r--r--
Migrate source and build to vite.js

/* Initialization of the namespace */
import {$,jQuery} from 'jquery';
window.$ = $;
window.jQuery = jQuery;
global.$ = $;
global.jQuery = jQuery;

import 'jquery-ui/dist/jquery-ui';

import 'jquery-ui/dist/themes/base/jquery-ui.css';

import _ from "lodash";

const __APP_VERSION__ = "";

const APP_VERSION = __APP_VERSION__;

const IriSP = {
  VERSION: APP_VERSION,
  jQuery: jQuery,
  libFiles: { locations: {} },

};

window.IriSP = IriSP;

export default IriSP;