]> git.ipfire.org Git - thirdparty/vuejs/create-vue.git/commitdiff
chore: explicitly set tsBuildInfoFile in tsconfig.*.json files (#409)
authorHaoqun Jiang <haoqunjiang@gmail.com>
Sun, 24 Dec 2023 08:58:00 +0000 (16:58 +0800)
committerGitHub <noreply@github.com>
Sun, 24 Dec 2023 08:58:00 +0000 (16:58 +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 491e0939517a1abe867467092ef20d2be1fbd692..e14c754d3ae5775d2ab13001e251c1371be912de 100644 (file)
@@ -4,7 +4,8 @@
   "exclude": ["src/**/__tests__/*"],
   "compilerOptions": {
     "composite": true,
-    "noEmit": true,
+    "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
+
     "baseUrl": ".",
     "paths": {
       "@/*": ["./src/*"]
index 46cf2e142ccca2f2de6f07a44fd83bceb1863a65..47712ab33cf56d3eec6145e725513ee92b69c3d2 100644 (file)
@@ -10,6 +10,8 @@
   "compilerOptions": {
     "composite": true,
     "noEmit": true,
+    "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
+
     "module": "ESNext",
     "moduleResolution": "Bundler",
     "types": ["node"]
index b21f0843448bcb538336232a2a3f52ef34e01ad8..12833b27531ee1944ceaf384acbbaf1868459cf6 100644 (file)
@@ -9,6 +9,7 @@
   ],
   "exclude": [],
   "compilerOptions": {
-    "composite": true
+    "composite": true,
+    "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.cypress-ct.tsbuildinfo"
   }
 }
index 491e0939517a1abe867467092ef20d2be1fbd692..e14c754d3ae5775d2ab13001e251c1371be912de 100644 (file)
@@ -4,7 +4,8 @@
   "exclude": ["src/**/__tests__/*"],
   "compilerOptions": {
     "composite": true,
-    "noEmit": true,
+    "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
+
     "baseUrl": ".",
     "paths": {
       "@/*": ["./src/*"]
index ca4be1af1028edff169445e967f1de287300963b..26066fc0f2853d35d241e1f8dd3bdfe0ce9491cf 100644 (file)
@@ -1,11 +1,13 @@
 {
   "extends": "@tsconfig/node18/tsconfig.json",
   "compilerOptions": {
+    "composite": true,
+    "noEmit": true,
+    "tsBuildInfoFile": "../node_modules/.tmp/tsconfig.nightwatch.tsbuildinfo",
+
     "target": "ESNext",
     "module": "commonjs",
     "moduleResolution": "node",
-    "composite": true,
-    "noEmit": true,
     "rootDir": "../",
     "lib": ["ESNext", "dom"],
     "types": ["nightwatch"]
index d080d611e38db50e232a39df044d1770a0f45940..571995d11e6acb21020f2570fb6a034609ee654e 100644 (file)
@@ -3,6 +3,8 @@
   "exclude": [],
   "compilerOptions": {
     "composite": true,
+    "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.vitest.tsbuildinfo",
+
     "lib": [],
     "types": ["node", "jsdom"]
   }