35 lines
850 B
TypeScript
35 lines
850 B
TypeScript
|
|
import { defineConfig } from 'vite'
|
||
|
|
import react from '@vitejs/plugin-react'
|
||
|
|
import dts from 'vite-plugin-dts'
|
||
|
|
import { resolve } from 'path'
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
plugins: [
|
||
|
|
react(),
|
||
|
|
dts({
|
||
|
|
include: ['src/design-system'],
|
||
|
|
exclude: ['**/*.test.tsx', '**/*.test.ts'],
|
||
|
|
outDir: 'dist',
|
||
|
|
tsconfigPath: resolve(__dirname, 'tsconfig.app.json'),
|
||
|
|
rollupTypes: true,
|
||
|
|
}),
|
||
|
|
],
|
||
|
|
css: {
|
||
|
|
modules: {
|
||
|
|
localsConvention: 'camelCase',
|
||
|
|
generateScopedName: 'cameleer_[name]_[local]_[hash:5]',
|
||
|
|
},
|
||
|
|
},
|
||
|
|
build: {
|
||
|
|
lib: {
|
||
|
|
entry: resolve(__dirname, 'src/design-system/index.ts'),
|
||
|
|
formats: ['es'],
|
||
|
|
fileName: () => 'index.es.js',
|
||
|
|
cssFileName: 'style',
|
||
|
|
},
|
||
|
|
rollupOptions: {
|
||
|
|
external: ['react', 'react-dom', 'react-router-dom', 'react/jsx-runtime'],
|
||
|
|
},
|
||
|
|
},
|
||
|
|
})
|