Skip to content

Commit

Permalink
fix: Removed sourcemap
Browse files Browse the repository at this point in the history
  • Loading branch information
cmath10 committed Jun 4, 2024
1 parent ee27d8c commit 7e469d0
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions rollup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,13 @@ const input = path.join(__dirname, '/src/index.ts')
const output: OutputOptions = {
exports: 'named',
dir: path.join(__dirname, '/dist'),
sourcemap: true,
globals: {
vue: 'Vue',
},
}

const plugins: InputPluginOption = [
typescript({
sourceMap: true,
}),
typescript(),
]

export default [{
Expand Down

0 comments on commit 7e469d0

Please sign in to comment.