Client - add eslint-plugin-import

This commit is contained in:
Sam
2023-11-11 18:44:07 +01:00
parent e9c482c585
commit b6d6a91549
7 changed files with 746 additions and 14 deletions

View File

@ -16,13 +16,12 @@ import ChartDataLabels from 'chartjs-plugin-datalabels'
import { createApp } from 'vue'
import VueFullscreen from 'vue-fullscreen'
import App from './App.vue'
import i18n from './i18n'
import router from './router'
import store from './store'
import App from '@/App.vue'
import { customComponents } from '@/custom-components'
import { clickOutsideDirective } from '@/directives'
import i18n from '@/i18n'
import router from '@/router'
import store from '@/store'
import { sportColors } from '@/utils/sports'
Chart.register(

View File

@ -1,3 +1,4 @@
/* eslint-disable import/export */
declare module 'vuex' {
export * from 'vuex/types/index.d.ts'
export * from 'vuex/types/helpers.d.ts'