From: btea <2356281422@qq.com> Date: Mon, 16 Oct 2023 17:34:33 +0000 (+0800) Subject: fix: omit the extension and import file ts error (#352) X-Git-Tag: v3.8.0~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2c8533045546447430f7262be42a1393b6b969f4;p=thirdparty%2Fvuejs%2Fcreate-vue.git fix: omit the extension and import file ts error (#352) --- diff --git a/tsconfig.json b/tsconfig.json index eecfbb93..df3ac89a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,6 +3,8 @@ "include": ["index.ts", "utils/**/*"], "compilerOptions": { "strict": false, - "resolveJsonModule": true + "resolveJsonModule": true, + "moduleResolution": "Bundler", + "module": "ESNext" } }