generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathrollup.config.mjs
38 lines (35 loc) · 1.02 KB
/
rollup.config.mjs
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
37
38
import { optimizeLodashImports } from "@optimize-lodash/rollup-plugin";
import babel from "@rollup/plugin-babel";
import commonjs from "@rollup/plugin-commonjs";
import { nodeResolve } from "@rollup/plugin-node-resolve";
import typescript from "@rollup/plugin-typescript";
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/ObsidianTaskArchiverPlugin.ts",
output: {
file: "main.js",
sourcemap: isProd ? false : "inline",
format: "cjs",
exports: "default",
banner,
},
external: ["obsidian"],
plugins: [
typescript({
noEmitOnError: true,
}),
nodeResolve({ browser: true }),
commonjs(),
babel({
extensions: [".tsx"],
babelHelpers: "bundled",
sourceMaps: isProd ? false : "both",
}),
optimizeLodashImports(),
],
};