-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
39 lines (38 loc) · 1.03 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
import { defineConfig } from 'vite';
import path, { basename } from 'path';
import dts from 'vite-plugin-dts';
import solidPlugin from 'vite-plugin-solid';
export default defineConfig({
css: {
modules: {
localsConvention: 'camelCaseOnly',
generateScopedName: (name, filename) => {
const res = `SUI_${basename(filename).replace(/\.module\.scss(.*)$/, '')}_${name}`;
return res;
},
},
},
plugins: [
solidPlugin(),
dts({
tsConfigFilePath: 'tsconfig.build.json',
insertTypesEntry: true,
noEmitOnError: true,
skipDiagnostics: false,
logDiagnostics: true,
}),
],
build: {
target: 'esnext',
lib: {
entry: path.resolve(__dirname, 'src/index.ts'),
formats: ['es', 'cjs'],
fileName: (format) => (format === 'es' ? 'index.mjs' : 'index.cjs'),
},
rollupOptions: {
// make sure to externalize deps that shouldn't be bundled
// into your library
external: ['solid-js', 'solid-js/web', 'solid-js/store'],
},
},
});