-
Notifications
You must be signed in to change notification settings - Fork 1
/
vite.config.js
49 lines (46 loc) · 1.31 KB
/
vite.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
/// <reference types="vitest" />
import { fumanBuild } from '@fuman/build/vite-internal'
import { nodeExternals } from 'rollup-plugin-node-externals'
import { defineConfig } from 'vite'
import dts from 'vite-plugin-dts'
const config = defineConfig(() => {
return {
test: {
include: [
'packages/**/*.test.ts',
],
coverage: {
include: [
'packages/**/*.ts',
],
exclude: [
'packages/**/index.ts',
'packages/**/*.test.ts',
'packages/**/*.bench.ts',
'**/dist',
],
},
},
build: {
target: 'esnext',
rollupOptions: {
output: {
// re-exported namespaces can't be tree-shaken when bundled
// see: https://github.com/rollup/rollup/issues/5161
preserveModules: true,
},
},
},
plugins: [
nodeExternals(),
fumanBuild({
root: __dirname,
insertTypesEntry: true,
}),
dts({
exclude: ['**/*.test.ts'],
}),
],
}
})
export default config