Skip to content

Commit 64ccebc

Browse files
committed
fix: incorrect noEmit in tsconfig
1 parent 86d79bf commit 64ccebc

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

src/coalesce-vue-vuetify3/tsconfig.json

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
11
{
22
"compilerOptions": {
3-
"target": "es2023",
3+
"target": "es2021",
44
"module": "esnext",
5+
"moduleResolution": "bundler",
56
"strict": true,
67
"jsx": "preserve",
7-
"moduleResolution": "bundler",
8+
"jsxImportSource": "vue",
9+
"importHelpers": true,
10+
"sourceMap": true,
11+
"resolveJsonModule": true,
812
"incremental": true,
913
"tsBuildInfoFile": "./node_modules/.tsbuildinfo",
1014
"skipLibCheck": true,
1115
"forceConsistentCasingInFileNames": true,
1216
"allowSyntheticDefaultImports": true,
13-
"noEmit": true,
1417
"baseUrl": ".",
1518
"paths": {
1619
"@test/*": ["test/*"],
@@ -23,10 +26,6 @@
2326
"vue-router": ["node_modules/vue-router"],
2427
"@vue/reactivity": ["node_modules/@vue/reactivity/dist/reactivity"]
2528
},
26-
"jsxImportSource": "vue",
27-
"importHelpers": true,
28-
"sourceMap": true,
29-
"resolveJsonModule": true,
3029
"lib": ["esnext", "dom", "dom.iterable", "scripthost"],
3130
"types": ["vue-router", "vuetify", "vitest/globals"]
3231
},

0 commit comments

Comments
 (0)