Skip to content

Commit b3b9d95

Browse files
committed
build
1 parent 0c5d2ca commit b3b9d95

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/repl",
3-
"version": "1.3.2",
3+
"version": "1.3.3",
44
"description": "Vue component for editing Vue components",
55
"main": "dist/ssr-stub.js",
66
"module": "dist/vue-repl.js",

tsconfig.build.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@
33
"baseUrl": ".",
44
"outDir": "dist",
55
"sourceMap": false,
6-
"target": "es2016",
6+
"target": "esnext",
77
"useDefineForClassFields": false,
88
"module": "esnext",
99
"moduleResolution": "node",
10+
"jsx": "preserve",
1011
"allowJs": false,
1112
"strict": true,
1213
"noUnusedLocals": true,
14+
"skipLibCheck": true,
1315
"experimentalDecorators": true,
1416
"resolveJsonModule": true,
1517
"esModuleInterop": true,

vite.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ const genStub: Plugin = {
1515

1616
export default defineConfig({
1717
define: {
18-
global: 'globalThis',
1918
'process.env': process.env,
19+
'process.platform': '""'
2020
},
2121
plugins: [vue(), genStub],
2222
build: {

0 commit comments

Comments
 (0)