-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathrollup.config.js
More file actions
30 lines (28 loc) · 853 Bytes
/
rollup.config.js
File metadata and controls
30 lines (28 loc) · 853 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
import typescript from '@rollup/plugin-typescript';
import { nodeResolve } from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import json from '@rollup/plugin-json';
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/daaru00/obsidian-time-tracker/
*/
`;
export default {
input: './src/main.ts',
output: {
dir: '.',
sourcemap: 'inline',
format: 'cjs',
exports: 'default',
banner,
},
external: ['obsidian', 'fs', 'os', 'child_process', 'path', 'crypto', 'buffer', 'process', 'stream', 'https', 'http', 'http2'],
plugins: [
typescript(),
nodeResolve({ browser: true }),
commonjs(),
json()
]
};