-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
59 lines (56 loc) · 1.38 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
48
49
50
51
52
53
54
55
56
57
58
59
import path from 'path'
import { vanillaExtractPlugin } from '@vanilla-extract/vite-plugin'
import react from '@vitejs/plugin-react'
import { defineConfig } from 'vite'
import dts from 'vite-plugin-dts'
import eslint from 'vite-plugin-eslint'
import tsconfigPaths from 'vite-tsconfig-paths'
import { peerDependencies } from './package.json'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
tsconfigPaths(),
vanillaExtractPlugin({
identifiers: 'short', // 'short' | 'debug' | ({ hash }) => `seq-${hash}`
}),
react(),
eslint({
include: ['**/*.ts', '**/*.tsx'],
}),
dts({
exclude: [
'node_modules',
'tests',
'**/*.stories.tsx',
'**/*.test.tsx',
'src/components/ThemeProvider/renderWithTheme.tsx',
],
outDir: 'dist/types',
}),
],
resolve: {
alias: [
{
find: '~',
replacement: path.resolve(__dirname, './src'),
},
],
},
publicDir: false,
build: {
lib: {
name: 'SequenceDesignSystem',
entry: path.resolve(__dirname, 'src/index.ts'),
formats: ['es', 'cjs'],
fileName: format => `index.${format}.js`,
},
outDir: path.resolve(__dirname, 'dist'),
rollupOptions: {
external: Object.keys(peerDependencies),
output: {
banner: "'use client';",
},
},
minify: false,
},
})