forked from AzureAD/microsoft-authentication-library-for-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
40 lines (37 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
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
import typescript from "@rollup/plugin-typescript";
import pkg from "./package.json";
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",
banner: fileHeader,
sourcemap: true,
},
treeshake: {
moduleSideEffects: false,
propertyReadSideEffects: false
},
external: [
...Object.keys(pkg.dependencies || {}),
...Object.keys(pkg.peerDependencies || {})
],
plugins: [
typescript({
typescript: require("typescript"),
tsconfig: "tsconfig.build.json"
})
]
}
];