-
Notifications
You must be signed in to change notification settings - Fork 6
/
rollup.config.js
36 lines (34 loc) · 985 Bytes
/
rollup.config.js
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
import typescript from '@rollup/plugin-typescript';
import dts from 'rollup-plugin-dts';
const config = [
{
input: 'src/index.ts',
output: {
file: 'dist/cjs/passwordless-api.cjs',
format: 'cjs',
sourcemap: true
},
external: ['axios'],
plugins: [typescript()] // No need to pass outDir, it will use tsconfig.json
},
{
input: 'src/index.ts', // Use source files for declaration generation
output: {
file: 'dist/types/passwordless-api.d.ts',
format: 'es'
},
external: ['axios'],
plugins: [dts.default()] // Generate declaration files
},
{
input: 'src/index.ts',
output: {
file: 'dist/esm/passwordless-api.mjs',
format: 'es',
sourcemap: true
},
external: ['axios'],
plugins: [typescript()] // No need to pass outDir
}
];
export default config;