-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.ts
75 lines (69 loc) · 1.8 KB
/
rollup.config.ts
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
import fs from 'node:fs'
import path from 'node:path'
import glob from 'glob'
import { fileURLToPath } from 'url'
import { defineConfig, Plugin } from 'rollup'
import pkg from './package.json' assert { type: 'json' }
import commonjs from '@rollup/plugin-commonjs'
import nodeResolve from '@rollup/plugin-node-resolve'
import json from '@rollup/plugin-json'
import typescript from 'rollup-plugin-typescript2'
import del from 'rollup-plugin-delete'
const __filename = fileURLToPath(import.meta.url)
const __dirname = path.dirname(__filename)
const resolve = (...args: string[]) => path.resolve(__dirname, ...args)
const rootDir = path.resolve(process.cwd())
const distDir = resolve(rootDir, 'dist')
const isProd = process.env.BUILD === 'production'
console.info(`building for ${process.env.BUILD}...`)
const ts = typescript({
check: isProd,
tsconfig: resolve(rootDir, 'tsconfig.json'),
tsconfigOverride: {
compilerOptions: {
sourceMap: isProd,
declaration: !isProd,
declarationMap: !isProd,
rootDir: resolve('src')
},
exclude: [
'node_modules',
'dist',
'**/rollup.config.ts',
'**/__tests__',
'**/*.test.ts',
'**/vitest.config.ts',
'**/scripts'
]
}
})
export default defineConfig({
input: Object.fromEntries(
glob
.sync('src/**/*.ts')
.map((file) => [
path.relative(
'src',
file.slice(0, file.length - path.extname(file).length)
),
fileURLToPath(new URL(file, import.meta.url))
])
),
output: {
format: 'es',
dir: distDir,
sourcemap: isProd
},
external: Object.keys(pkg.dependencies),
plugins: [
json({
namedExports: false
}),
nodeResolve(),
commonjs({
transformMixedEsModules: true
}),
ts,
del({ targets: 'dist/*' })
]
})