20 lines
389 B
JavaScript
20 lines
389 B
JavaScript
import json from '@rollup/plugin-json'
|
|
import commonjs from '@rollup/plugin-commonjs'
|
|
import resolve from '@rollup/plugin-node-resolve'
|
|
|
|
export default {
|
|
input: 'entry.js',
|
|
output: {
|
|
file: 'index.js',
|
|
format: 'cjs'
|
|
},
|
|
external: ['vscode', 'fs', 'path', 'url', 'events'],
|
|
plugins: [
|
|
json(),
|
|
commonjs({
|
|
ignoreDynamicRequires: true
|
|
}),
|
|
resolve()
|
|
]
|
|
}
|
JavaScript
98.5%
SCSS
1.5%