mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-15 17:42:15 +08:00
15 lines
274 B
JavaScript
15 lines
274 B
JavaScript
import typescript from '@rollup/plugin-typescript';
|
|
|
|
export default {
|
|
input: 'src/index.ts',
|
|
output: [
|
|
{
|
|
file: 'dist/index.js',
|
|
format: 'es',
|
|
sourcemap: true,
|
|
}
|
|
],
|
|
plugins: [typescript()],
|
|
external: ['vue-router', 'vue', '@ionic/vue']
|
|
};
|