mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2026-01-28 16:07:11 +00:00
41 lines
901 B
JavaScript
41 lines
901 B
JavaScript
import typescript from '@rollup/plugin-typescript';
|
|
import { nodeResolve } from '@rollup/plugin-node-resolve';
|
|
import commonjs from '@rollup/plugin-commonjs';
|
|
import nodePolyfills from 'rollup-plugin-polyfill-node';
|
|
|
|
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: 'main.ts',
|
|
output: {
|
|
dir: '.',
|
|
sourcemap: 'inline',
|
|
sourcemapExcludeSources: isProd,
|
|
format: 'cjs',
|
|
exports: 'default',
|
|
banner,
|
|
},
|
|
// treeshake: "safest",
|
|
external: ['obsidian'],
|
|
plugins: [
|
|
typescript({exclude:["pouchdb-browser.js"]}),
|
|
nodePolyfills(
|
|
// // {crypto:true}
|
|
{ include: "pouchdb-browser" }
|
|
),
|
|
nodeResolve({
|
|
browser: true,
|
|
// preferBuiltins: true
|
|
}),
|
|
commonjs(),
|
|
|
|
]
|
|
};
|