Skip to content

Commit 2bd67c2

Browse files
committed
chore: change target to es5 until cjs fix
1 parent 2ff6157 commit 2bd67c2

File tree

2 files changed

+2
-12
lines changed

2 files changed

+2
-12
lines changed

rollup.config.ts

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,7 @@ import typescript from "rollup-plugin-typescript2";
55
import vue from "rollup-plugin-vue";
66

77
const common = {
8-
plugins: [
9-
resolve(),
10-
autoExternal(),
11-
typescript(),
12-
vue({
13-
cssModulesOptions: {
14-
generateScopedName: "[local]___[hash:base64:5]",
15-
},
16-
}),
17-
postcss(),
18-
],
8+
plugins: [resolve(), autoExternal(), typescript(), vue(), postcss()],
199
watch: {
2010
include: "src/**",
2111
exclude: ["node_modules/**", "tests"],

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"compilerOptions": {
33
"outDir": "lib",
4-
"target": "es6",
4+
"target": "es5",
55
"module": "ESNext",
66
"moduleResolution": "node",
77
"declaration": true,

0 commit comments

Comments
 (0)