-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathrollup.config.js
More file actions
31 lines (28 loc) · 722 Bytes
/
rollup.config.js
File metadata and controls
31 lines (28 loc) · 722 Bytes
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
import typescript from "@rollup/plugin-typescript";
import resolve 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/plugin/main.ts",
output: {
dir: "./",
sourcemap: "inline",
sourcemapExcludeSources: isProd,
format: "cjs",
exports: "default",
banner,
},
external: ["obsidian"],
plugins: [
typescript(),
resolve({
browser: true,
}),
commonjs({ include: "node_modules/**" }),
],
};