Skip to content

Commit

Permalink
Fix/Build
Browse files Browse the repository at this point in the history
  • Loading branch information
daniluk4000 committed Sep 25, 2023
1 parent d271c06 commit ec10ff8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/examples/vue3/src/example-component.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import {
YandexMapZoomControl,
} from 'vue-yandex-maps';
const clusterCoordinates = [
const clusterCoordinates: [number, number][] = [
[37.64, 55.76],
[37.63, 55.7],
[37.43, 55.69],
Expand Down
8 changes: 6 additions & 2 deletions packages/vue-yandex-maps/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,17 @@
"main": "./dist/vue-yandex-maps.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/vue-yandex-maps.js",
".": {
"types": "./dist/index.d.ts",
"default": "./dist/vue-yandex-maps.js"
},
"./nuxt": {
"types": "./dist/nuxt/types.d.ts",
"import": "./dist/nuxt/module.mjs",
"require": "./dist/nuxt/module.cjs"
},
"./nuxt2": "./dist/nuxt2.js"
"./nuxt2": "./dist/nuxt2.js",
"./dist/*": "./dist/*"
},
"scripts": {
"build": "yarn workspace nuxt prepack && yarn build:package-only",
Expand Down

0 comments on commit ec10ff8

Please sign in to comment.