mirror of https://github.com/lukechilds/rollup.git
Oskar Segersvärd
9 years ago
2 changed files with 19 additions and 0 deletions
@ -0,0 +1,18 @@ |
|||
module.exports = { |
|||
options: { |
|||
plugins: [ |
|||
{ |
|||
transform: function ( code ) { |
|||
return { |
|||
code: code, |
|||
map: JSON.stringify({ mappings: '' }) |
|||
}; |
|||
} |
|||
} |
|||
] |
|||
}, |
|||
|
|||
bundleOptions: { |
|||
sourceMap: true |
|||
} |
|||
}; |
@ -0,0 +1 @@ |
|||
export default 42; |
Loading…
Reference in new issue