forked from vuejs/test-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
55 lines (47 loc) · 1.07 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
import ts from 'rollup-plugin-typescript2'
import pkg from './package.json'
const banner = `
/**
* ${pkg.name} v${pkg.version}
* (c) ${new Date().getFullYear()} Lachlan Miller
* Released under the MIT License
*/
`
function createEntry(options) {
const {
format,
input,
isBrowser
} = options
const config = {
input,
external: ['vue'],
plugins: [],
output: {
banner,
file: 'dist/vue-router.other.js',
format
}
}
if (format === 'es') {
config.output.file = isBrowser ? pkg.browser : pkg.module
}
console.log('file is', config.output.file)
config.plugins.push(
ts({
check: format === 'es' && isBrowser,
tsconfigOverride: {
compilerOptions: {
declaration: format === 'es' && isBrowser,
target: 'es6' // not sure what this should be?
},
exclude: ['tests']
}
})
)
return config
}
export default [
createEntry({ format: 'es', input: 'src/index.ts', isBrowser: false }),
createEntry({ format: 'es', input: 'src/index.ts', isBrowser: true }),
]