-
Notifications
You must be signed in to change notification settings - Fork 1
/
rollup.config.js
49 lines (47 loc) · 1.09 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
import commonjs from '@rollup/plugin-commonjs';
import typescript from 'rollup-plugin-typescript2';
import babel from '@rollup/plugin-babel';
import resolve from '@rollup/plugin-node-resolve';
import { terser } from 'rollup-plugin-terser';
import alias from '@rollup/plugin-alias';
import json from '@rollup/plugin-json';
import pkg from './package.json';
const path = require('path');
export default {
input: 'src/index.ts',
output: [
{
file: pkg.browser,
name: 'svgWebglLoader',
format: 'umd',
},
{
file: pkg.module,
// name: 'svgWebglLoader',
format: 'es',
},
],
plugins: [
json(),
alias({
entries: [{ find: '@', replacement: path.resolve(__dirname, './src') }],
resolve: ['.js', '.ts'],
}),
commonjs(),
resolve({
preferBuiltins: true,
mainFields: ['browser', 'module'],
}),
typescript(),
terser({
compress: {
// 去掉console.log函数
pure_funcs: ['console.log'],
},
}),
babel({
exclude: 'node_modules/**',
extensions: ['.js', '.ts'],
}),
],
};