forked from carbon-design-system/carbon-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
47 lines (45 loc) · 1.09 KB
/
vite.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
import './vite-env.d.ts'
import { fileURLToPath } from 'url'
import { defineConfig, type PluginOption } from 'vite'
import dts from 'vite-plugin-dts'
export default defineConfig({
test: {
environment: 'jsdom'
},
build: {
sourcemap: true,
chunkSizeWarningLimit: 600,
lib: {
entry: {
index: 'src/index.ts',
'components/index': 'src/components/index.ts',
'interfaces/index': 'src/interfaces/index.ts',
'model/index': 'src/model/index.ts',
'services/index': 'src/services/index.ts'
},
formats: ['es']
},
rollupOptions: {
output: {
entryFileNames: '[name].mjs',
chunkFileNames: '[name]-[hash].mjs'
}
}
},
optimizeDeps: {
exclude: ['@ibm/telemetry-js']
},
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
},
plugins: [
// Equivalent to: npx tsc --declaration --emitDeclarationOnly --rootDir src
// However, tsc does not resolve the alias '@/' so use vite-plugin-dts.
dts({
entryRoot: 'src',
logLevel: 'silent' // Suppress package.json errors as they don't need d.ts files
}) as unknown as PluginOption
]
})