-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvite.config.js
39 lines (38 loc) · 1.34 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
// @ts-ignore
import typescript from '@rollup/plugin-typescript';
import path from 'path';
import { getBuildConfiguration, Globals } from './utils/builds.mjs';
import TreeShakableDecorators from 'vite-plugin-tree-shakable-decorators';
export function getBaseConfig(packageName) {
const buildConfiguration = getBuildConfiguration(packageName);
return {
build: {
outDir: 'dist',
emptyOutDir: true,
lib: {
entry: 'src/index.ts',
name: buildConfiguration.moduleName,
},
rollupOptions: {
plugins: [
typescript({
target: 'esnext',
rootDir: path.resolve(process.cwd(), 'src'),
declaration: true,
declarationDir: path.resolve(process.cwd(), 'dist'),
exclude: path.resolve(
process.cwd(),
'node_modules/**'
),
allowSyntheticDefaultImports: true,
}),
TreeShakableDecorators()
],
external: buildConfiguration.externals,
output: {
globals: Globals,
},
},
},
};
}