-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathvite.config.ts
49 lines (47 loc) · 1.57 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
import { defineProject } from 'vitest/config'
import pkg from './package.json' with { type: 'json' }
const globalVarName = pkg.name
.substring(pkg.name.lastIndexOf('/') + 1)
.replace(/-./g, (x) => x[1].toUpperCase())
export default defineProject({
build: {
sourcemap: true,
target: 'es6',
lib: {
entry: 'src/index.ts',
name: globalVarName,
formats: ['umd'],
fileName: (format, entryName) => {
switch (format) {
case 'umd':
return `umd/${entryName}.min.js`
default:
throw new Error(`unsupported format ${format}`)
}
},
},
rollupOptions: {
external: ['instant-meilisearch'],
output: {
globals: {
// Map the external 'instant-meilisearch' import to 'instantMeilisearch' global variable,
// i.e. the package name defined in instant-meilisearch's build config
'instant-meilisearch': 'instantMeilisearch',
},
// the following code enables Vite in UMD mode to extend the global object with all of
// the exports, and not just a property of it ( https://github.com/vitejs/vite/issues/11624 )
footer: `(function () {
if (typeof self !== "undefined") {
var clonedGlobal = Object.assign({}, self.${globalVarName});
delete clonedGlobal.default;
Object.assign(self, clonedGlobal);
}
})();`,
},
},
},
test: {
include: ['{src,__tests__}/**/*.test.ts'],
testTimeout: 100_000, // 100 seconds
},
})