You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
682 B
30 lines
682 B
import typescript from '@rollup/plugin-typescript';
|
|
import {nodeResolve} from '@rollup/plugin-node-resolve';
|
|
import commonjs from '@rollup/plugin-commonjs';
|
|
|
|
const isProd = (process.env.BUILD === 'production');
|
|
|
|
const banner =
|
|
`/*
|
|
THIS IS A GENERATED/BUNDLED FILE BY ROLLUP
|
|
if you want to view the source visit the plugins github repository
|
|
*/
|
|
`;
|
|
|
|
export default {
|
|
input: './src/main.ts',
|
|
output: {
|
|
dir: '.',
|
|
sourcemap: 'inline',
|
|
sourcemapExcludeSources: isProd,
|
|
format: 'cjs',
|
|
exports: 'default',
|
|
banner,
|
|
},
|
|
external: ['obsidian'],
|
|
plugins: [
|
|
typescript(),
|
|
nodeResolve({browser: true}),
|
|
commonjs(),
|
|
]
|
|
}; |