chore: update npm libraries
bugfix: fix warning about ambiguous imports or types
This commit is contained in:
parent
a0c8e9592f
commit
113a5fb16e
@ -10,25 +10,26 @@
|
||||
"setup": "pnpm install"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^18.16.18",
|
||||
"nuxt": "^3.5.3",
|
||||
"sass": "^1.63.4",
|
||||
"sass-loader": "^13.3.2",
|
||||
"typescript-strict-plugin": "^2.1.0",
|
||||
"webpack": "^5.87.0"
|
||||
"@types/node": "^18.19.17",
|
||||
"http-proxy": "^1.18.1",
|
||||
"nuxt": "^3.10.2",
|
||||
"sass": "^1.71.0",
|
||||
"sass-loader": "^13.3.3",
|
||||
"typescript-strict-plugin": "^2.3.0",
|
||||
"webpack": "^5.90.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@pinia/nuxt": "^0.4.11",
|
||||
"@vue/reactivity": "^3.3.4",
|
||||
"@vue/runtime-core": "^3.3.4",
|
||||
"@vue/runtime-dom": "^3.3.4",
|
||||
"@vue/shared": "^3.3.4",
|
||||
"@vue/reactivity": "^3.4.19",
|
||||
"@vue/runtime-core": "^3.4.19",
|
||||
"@vue/runtime-dom": "^3.4.19",
|
||||
"@vue/shared": "^3.4.19",
|
||||
"nuxt-icons": "^3.2.1",
|
||||
"ofetch": "^1.3.3",
|
||||
"query-string": "^8.1.0",
|
||||
"typescript": "^5.1.3",
|
||||
"vue": "^3.3.4",
|
||||
"query-string": "^8.2.0",
|
||||
"typescript": "^5.3.3",
|
||||
"vue": "^3.4.19",
|
||||
"vue-contenteditable": "^4.1.0",
|
||||
"vue-router": "^4.2.2"
|
||||
"vue-router": "^4.2.5"
|
||||
}
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -11,9 +11,10 @@
|
||||
|
||||
<script setup lang="ts">
|
||||
import { useRouter } from '#app'
|
||||
import { ref, Ref } from 'vue'
|
||||
import { ref } from 'vue'
|
||||
import useAuth from '@/composables/useAuth';
|
||||
import useI18n from '@/composables/useI18n';
|
||||
import type { Ref } from 'vue'
|
||||
|
||||
const { $t } = useI18n({
|
||||
'login': { en: 'log in', de: 'login'},
|
||||
|
@ -13,7 +13,7 @@
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { Player } from '@/composables/engine.d';
|
||||
import type { Player } from '@/composables/engine.d';
|
||||
|
||||
defineProps<{
|
||||
player: Player,
|
||||
|
@ -23,7 +23,7 @@
|
||||
|
||||
<script setup lang="ts">
|
||||
import { onMounted, ref } from 'vue'
|
||||
import { PlayerEdit } from '@/composables/engine.d'
|
||||
import type { PlayerEdit } from '@/composables/engine.d'
|
||||
import type { Button } from '@/components/admin/PlayerModal'
|
||||
|
||||
const props = defineProps<{
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { defineStore } from 'pinia'
|
||||
import { Players } from '@/composables/engine.d';
|
||||
import type { Players } from '@/composables/engine.d';
|
||||
|
||||
export const usePlayersStore = defineStore('PlayersStore', {
|
||||
state: () => {
|
||||
|
Loading…
Reference in New Issue
Block a user