-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvite.config.ts
More file actions
34 lines (33 loc) · 1.23 KB
/
vite.config.ts
File metadata and controls
34 lines (33 loc) · 1.23 KB
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
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import path from 'path';
const pkg = require('./package.json');
// 노드 모듈에서 다른 확장자를 읽어 올 수 있게해줌 우리같은경우 TS를 사용하니까 js 모듈을 사용하려고하면 필요함 근데 우리가 쓰는건 대부분 ts지 않나 싶음
import resolve from '@rollup/plugin-node-resolve';
// .json 파일을 esmodule로 변환해서 사용할 수 있게 해줍니다.
import json from '@rollup/plugin-json';
// 번들 파일에 declaration 파일을 만들어줌 없으면 타입이 안만들어짐.
import dts from 'vite-plugin-dts';
// https://vitejs.dev/config/
const extensions = ['.js', '.jsx', '.ts', '.tsx'];
export default defineConfig({
plugins: [
dts({
include: ['src/'],
}),
react(),
],
build: {
lib: {
entry: path.resolve('src', 'index.ts'),
name: 'parte-ui',
formats: ['es', 'umd'],
fileName: (format) => `index.${format}.js`,
},
rollupOptions: {
// external: 라이브러리에 포함하지 않을 디펜던시를 명시해주세요
external: [...Object.keys(pkg.peerDependencies)],
plugins: [resolve({ extensions }), json()],
},
},
});