-
Notifications
You must be signed in to change notification settings - Fork 2
/
rollup.config.mjs
54 lines (47 loc) · 1.1 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// @ts-check
import { readFile } from 'node:fs/promises';
import typescript2 from 'rollup-plugin-typescript2';
const packageJSON = JSON.parse(await readFile('./package.json', 'utf-8'));
/**
* Comment with library information to be appended in the generated bundles.
*/
const banner = `/*!
* ${packageJSON.name} v${packageJSON.version}
* (c) ${packageJSON.author.name}
* Released under the ${packageJSON.license} License.
*/
`;
/**
* Creates an output options object for Rollup.js.
* @param {import('rollup').OutputOptions} options
* @returns {import('rollup').OutputOptions}
*/
function createOutputOptions(options) {
return {
banner,
name: 'node-sms-ru',
exports: 'named',
sourcemap: true,
...options,
};
}
/**
* @type {import('rollup').RollupOptions}
*/
const options = {
input: `src/node-sms-ru.ts`,
output: [
createOutputOptions({
file: './dist/index.mjs',
format: 'esm',
}),
],
plugins: [
typescript2({
clean: true,
useTsconfigDeclarationDir: true,
tsconfig: './tsconfig.bundle.json',
}),
],
};
export default options;