src/js/init.js
author ymh <ymh.work@gmail.com>
Tue, 22 Oct 2024 09:54:34 +0200
changeset 1080 2b513bcb710a
parent 1072 ac1eacb3aa33
permissions -rw-r--r--
increment version

/* 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;