]> git.ipfire.org Git - thirdparty/vuejs/create-vue.git/commitdiff
fix: omit the extension and import file ts error (#352)
authorbtea <2356281422@qq.com>
Mon, 16 Oct 2023 17:34:33 +0000 (01:34 +0800)
committerGitHub <noreply@github.com>
Mon, 16 Oct 2023 17:34:33 +0000 (17:34 +0000)
tsconfig.json

index eecfbb93a6651b96c0f1f6e923e8c21b19b4608c..df3ac89a1b603672e3fe2d0c30b2e66f4246d1bf 100644 (file)
@@ -3,6 +3,8 @@
   "include": ["index.ts", "utils/**/*"],
   "compilerOptions": {
     "strict": false,
-    "resolveJsonModule": true
+    "resolveJsonModule": true,
+    "moduleResolution": "Bundler",
+    "module": "ESNext"
   }
 }