]> git.ipfire.org Git - thirdparty/vuejs/create-vue.git/commitdiff
fix: add `module: "ESNext"` to tsconfig.node (#266)
authorjahnli <jahnli@163.com>
Sat, 6 May 2023 08:42:00 +0000 (16:42 +0800)
committerGitHub <noreply@github.com>
Sat, 6 May 2023 08:42:00 +0000 (16:42 +0800)
As all the configuration files are in ESNext syntax.

Co-authored-by: lijiaheng <lijiaheng@semi-tech.com>
Co-authored-by: Haoqun Jiang <haoqunjiang@gmail.com>
template/tsconfig/base/tsconfig.node.json

index 779f2cc00ef2e2f5bce34b822924dd198c6034b9..a52f76f329820d61d5116bb3b8013a8677c8ebce 100644 (file)
@@ -3,6 +3,7 @@
   "include": ["vite.config.*", "vitest.config.*", "cypress.config.*", "playwright.config.*"],
   "compilerOptions": {
     "composite": true,
+    "module": "ESNext",
     "types": ["node"]
   }
 }