-
Notifications
You must be signed in to change notification settings - Fork 2.7k
/
Copy pathrollup.config.js
129 lines (126 loc) · 3.7 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
import { nodeResolve } from "@rollup/plugin-node-resolve";
import typescript from "@rollup/plugin-typescript";
import terser from "@rollup/plugin-terser";
import pkg from "./package.json";
import { createPackageJson } from "rollup-msal";
const libraryHeader = `/*! ${pkg.name} v${pkg.version} ${
new Date().toISOString().split("T")[0]
} */`;
const useStrictHeader = "'use strict';";
const fileHeader = `${libraryHeader}\n${useStrictHeader}`;
export default [
{
// for es build
input: "src/index.ts",
output: {
dir: "dist",
preserveModules: true,
preserveModulesRoot: "src",
format: "es",
entryFileNames: "[name].mjs",
banner: fileHeader,
sourcemap: true,
},
treeshake: {
moduleSideEffects: false,
propertyReadSideEffects: false,
},
external: [
"@azure/msal-common/browser"
],
plugins: [
typescript({
typescript: require("typescript"),
tsconfig: "tsconfig.build.json",
})
],
},
{
input: "src/index.ts",
output: [
{
dir: "lib",
format: "cjs",
banner: fileHeader,
sourcemap: true,
entryFileNames: "msal-browser.cjs",
inlineDynamicImports: true,
},
],
plugins: [
nodeResolve({
browser: true,
resolveOnly: ["@azure/msal-common", "tslib"],
}),
typescript({
typescript: require("typescript"),
tsconfig: "tsconfig.build.json",
sourceMap: true,
compilerOptions: { outDir: "lib/types" },
}),
createPackageJson({libPath: __dirname})
],
},
{
input: "src/index.ts",
output: [
{
dir: "lib",
format: "umd",
name: "msal",
banner: fileHeader,
inlineDynamicImports: true,
sourcemap: true,
entryFileNames: "msal-browser.js",
},
],
plugins: [
nodeResolve({
browser: true,
resolveOnly: ["@azure/msal-common", "tslib"],
}),
typescript({
typescript: require("typescript"),
tsconfig: "tsconfig.build.json",
sourceMap: true,
compilerOptions: { outDir: "lib/types", declaration: false, declarationMap: false },
}),
],
},
{
// Minified version of msal
input: "src/index.ts",
output: [
{
dir: "lib",
format: "umd",
name: "msal",
entryFileNames: "msal-browser.min.js",
banner: useStrictHeader,
inlineDynamicImports: true,
sourcemap: false,
},
],
plugins: [
nodeResolve({
browser: true,
resolveOnly: ["@azure/msal-common", "tslib"],
}),
typescript({
typescript: require("typescript"),
tsconfig: "tsconfig.build.json",
sourceMap: false,
compilerOptions: { outDir: "lib/types", declaration: false, declarationMap: false },
}),
terser({
output: {
preamble: libraryHeader,
},
}),
],
},
];