Files
Liam DeBeasi 86bbed07fc refactor(vue): only ship es modules (#26054)
resolves #25104

BREAKING CHANGE:

`@ionic/vue` and `@ionic/vue-router` no longer ship a CommonJS entry point. Instead, only an ES Module entry point is provided for improved compatibility with Vite.
2022-09-30 11:43:50 -04:00

12 lines
192 B
JavaScript

export default {
input: 'dist-transpiled/index.js',
output: [
{
file: 'dist/index.js',
format: 'es',
sourcemap: true,
}
],
external: ['vue-router', 'vue']
};