]> git.ipfire.org Git - thirdparty/vuejs/create-vue.git/commitdiff
fix: remove `composite: true` from tsconfigs (#635)
authorHaoqun Jiang <haoqunjiang@gmail.com>
Thu, 12 Dec 2024 16:49:24 +0000 (00:49 +0800)
committerGitHub <noreply@github.com>
Thu, 12 Dec 2024 16:49:24 +0000 (00:49 +0800)
template/tsconfig/base/tsconfig.app.json
template/tsconfig/base/tsconfig.node.json
template/tsconfig/cypress-ct/tsconfig.cypress-ct.json
template/tsconfig/nightwatch-ct/tsconfig.app.json
template/tsconfig/nightwatch/nightwatch/tsconfig.json
template/tsconfig/vitest/tsconfig.vitest.json

index 93f952f1dd81403bc536b9fedae23f14d41eec22..913b8f279fca6f23c1b6532660583d2ec4ccebab 100644 (file)
@@ -3,7 +3,6 @@
   "include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
   "exclude": ["src/**/__tests__/*"],
   "compilerOptions": {
-    "composite": true,
     "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
 
     "paths": {
index 5a0c6a54f8106b6e4006f6c4654ff79e2c4dfd3a..4c399c2c83d2e810ac0f824c3b771a2fe5d3a735 100644 (file)
@@ -8,7 +8,6 @@
     "playwright.config.*"
   ],
   "compilerOptions": {
-    "composite": true,
     "noEmit": true,
     "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
 
index 12833b27531ee1944ceaf384acbbaf1868459cf6..9e97d8c3f859c931d445dc9d6dc128e422537291 100644 (file)
@@ -9,7 +9,6 @@
   ],
   "exclude": [],
   "compilerOptions": {
-    "composite": true,
     "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.cypress-ct.tsbuildinfo"
   }
 }
index 93f952f1dd81403bc536b9fedae23f14d41eec22..913b8f279fca6f23c1b6532660583d2ec4ccebab 100644 (file)
@@ -3,7 +3,6 @@
   "include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
   "exclude": ["src/**/__tests__/*"],
   "compilerOptions": {
-    "composite": true,
     "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
 
     "paths": {
index d994fd52b696e04eb512c180b54886a9f34ffe71..ccb33dc3364fbeb70e0718c5076c199910313720 100644 (file)
@@ -1,7 +1,6 @@
 {
   "extends": "@tsconfig/node22/tsconfig.json",
   "compilerOptions": {
-    "composite": true,
     "noEmit": true,
     "tsBuildInfoFile": "../node_modules/.tmp/tsconfig.nightwatch.tsbuildinfo",
 
index 571995d11e6acb21020f2570fb6a034609ee654e..7d1d8cef325f81d4cea6abfdef5351fcc8fc8cd0 100644 (file)
@@ -1,8 +1,8 @@
 {
   "extends": "./tsconfig.app.json",
+  "include": ["src/**/__tests__/*", "env.d.ts"],
   "exclude": [],
   "compilerOptions": {
-    "composite": true,
     "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.vitest.tsbuildinfo",
 
     "lib": [],