We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c9a492 commit e2ef2fbCopy full SHA for e2ef2fb
package.json
@@ -16,7 +16,9 @@
16
"node": ">=14"
17
},
18
"scripts": {
19
- "build": "vite build"
+ "build": "vite build",
20
+ "bench": "vitest bench",
21
+ "test": "vitest"
22
23
"prettier": {
24
"printWidth": 80,
vite.config.ts
@@ -25,7 +25,8 @@ export default defineConfig({
25
26
27
sourcemap: true,
28
- target: 'es6',
+ // Let the consumer of the node_module set the target.
29
+ target: 'esnext',
30
minify: false,
31
32
});
0 commit comments