this repo has no description
9
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 26 lines 573 B view raw
1import resolve from "@rollup/plugin-node-resolve"; 2import commonjs from "@rollup/plugin-commonjs"; 3import json from "@rollup/plugin-json"; 4import typescript from "rollup-plugin-typescript2"; 5 6export default { 7 input: "src/main.ts", 8 output: { 9 file: "main.js", 10 format: "cjs", 11 sourcemap: true, 12 exports: "default" 13 }, 14 external: ["obsidian", "electron", "fs", "path", "crypto"], 15 plugins: [ 16 resolve({ 17 browser: true, 18 preferBuiltins: false 19 }), 20 json(), 21 commonjs(), 22 typescript({ 23 tsconfig: "./tsconfig.json" 24 }) 25 ] 26};