This commit is contained in:
Kseninia Mikhaylova 2024-05-17 17:07:22 +03:00
parent edc7a363f4
commit 238c5f028c
3 changed files with 8 additions and 6 deletions

View File

@ -7,16 +7,10 @@ export {}
declare module 'vue' { declare module 'vue' {
export interface GlobalComponents { export interface GlobalComponents {
copy: typeof import('./src/components/Home copy.vue')['default']
Floorplan: typeof import('./src/components/Floorplan.vue')['default'] Floorplan: typeof import('./src/components/Floorplan.vue')['default']
Game: typeof import('./src/components/Game.vue')['default'] Game: typeof import('./src/components/Game.vue')['default']
Home: typeof import('./src/components/Home.vue')['default'] Home: typeof import('./src/components/Home.vue')['default']
IMdi3dRotation: typeof import('~icons/mdi/3d-rotation')['default']
IMdiCard: typeof import('~icons/mdi/card')['default']
IMdiClarify: typeof import('~icons/mdi/clarify')['default']
IMdiFile: typeof import('~icons/mdi/file')['default'] IMdiFile: typeof import('~icons/mdi/file')['default']
IMdiIcon: typeof import('~icons/mdi/icon')['default']
IMdiPrinter: typeof import('~icons/mdi/printer')['default']
IMdiVideo3d: typeof import('~icons/mdi/video3d')['default'] IMdiVideo3d: typeof import('~icons/mdi/video3d')['default']
Projects: typeof import('./src/components/Projects.vue')['default'] Projects: typeof import('./src/components/Projects.vue')['default']
RandomIcon: typeof import('./src/components/RandomIcon.vue')['default'] RandomIcon: typeof import('./src/components/RandomIcon.vue')['default']

View File

@ -20,6 +20,7 @@
}, },
"devDependencies": { "devDependencies": {
"@iconify-json/mdi": "^1.1.66", "@iconify-json/mdi": "^1.1.66",
"@types/pathfinding": "^0.0.9",
"@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue": "^5.0.4",
"@vue/compiler-sfc": "^3.2.31", "@vue/compiler-sfc": "^3.2.31",
"sass": "^1.75.0", "sass": "^1.75.0",
@ -775,6 +776,12 @@
"integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==",
"dev": true "dev": true
}, },
"node_modules/@types/pathfinding": {
"version": "0.0.9",
"resolved": "https://registry.npmjs.org/@types/pathfinding/-/pathfinding-0.0.9.tgz",
"integrity": "sha512-b7tf4+gVc8+sRETzJ7pCeqhknQ9XVgYqbH5+ekcHmO5Hf/fy9BTBzSstE9mcOQc81Y0qITda8tF/UsN3huIMwg==",
"dev": true
},
"node_modules/@types/three": { "node_modules/@types/three": {
"version": "0.141.0", "version": "0.141.0",
"resolved": "https://registry.npmjs.org/@types/three/-/three-0.141.0.tgz", "resolved": "https://registry.npmjs.org/@types/three/-/three-0.141.0.tgz",

View File

@ -21,6 +21,7 @@
}, },
"devDependencies": { "devDependencies": {
"@iconify-json/mdi": "^1.1.66", "@iconify-json/mdi": "^1.1.66",
"@types/pathfinding": "^0.0.9",
"@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue": "^5.0.4",
"@vue/compiler-sfc": "^3.2.31", "@vue/compiler-sfc": "^3.2.31",
"sass": "^1.75.0", "sass": "^1.75.0",