generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
rollup.config.js
36 lines (34 loc) · 928 Bytes
/
rollup.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import svelte from "rollup-plugin-svelte";
import commonjs from "@rollup/plugin-commonjs";
import resolve from "@rollup/plugin-node-resolve";
import autoPreprocess from "svelte-preprocess";
import typescript from "@rollup/plugin-typescript";
const banner =
`/*
THIS IS A GENERATED/BUNDLED FILE BY ROLLUP
if you want to view the source visit the plugins github repository (https://github.com/phibr0/obsidian-charts)
*/
`;
export default {
input: "src/main.ts",
output: {
format: "cjs",
file: "main.js",
sourcemap: "inline",
exports: "default",
banner
},
external: ["obsidian"],
plugins: [
svelte({
emitCss: false,
preprocess: autoPreprocess(),
}),
typescript(),
resolve({
browser: true,
dedupe: ["svelte"],
}),
commonjs(),
],
};