Skip to content

Commit b1505e4

Browse files
authored
chore: explicitly set tsBuildInfoFile in tsconfig.*.json files (#409)
1 parent 23e5d10 commit b1505e4

File tree

6 files changed

+14
-5
lines changed

6 files changed

+14
-5
lines changed

Diff for: template/tsconfig/base/tsconfig.app.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"exclude": ["src/**/__tests__/*"],
55
"compilerOptions": {
66
"composite": true,
7-
"noEmit": true,
7+
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
8+
89
"baseUrl": ".",
910
"paths": {
1011
"@/*": ["./src/*"]

Diff for: template/tsconfig/base/tsconfig.node.json

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
"compilerOptions": {
1111
"composite": true,
1212
"noEmit": true,
13+
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
14+
1315
"module": "ESNext",
1416
"moduleResolution": "Bundler",
1517
"types": ["node"]

Diff for: template/tsconfig/cypress-ct/tsconfig.cypress-ct.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
],
1010
"exclude": [],
1111
"compilerOptions": {
12-
"composite": true
12+
"composite": true,
13+
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.cypress-ct.tsbuildinfo"
1314
}
1415
}

Diff for: template/tsconfig/nightwatch-ct/tsconfig.app.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"exclude": ["src/**/__tests__/*"],
55
"compilerOptions": {
66
"composite": true,
7-
"noEmit": true,
7+
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
8+
89
"baseUrl": ".",
910
"paths": {
1011
"@/*": ["./src/*"]

Diff for: template/tsconfig/nightwatch/nightwatch/tsconfig.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
{
22
"extends": "@tsconfig/node18/tsconfig.json",
33
"compilerOptions": {
4+
"composite": true,
5+
"noEmit": true,
6+
"tsBuildInfoFile": "../node_modules/.tmp/tsconfig.nightwatch.tsbuildinfo",
7+
48
"target": "ESNext",
59
"module": "commonjs",
610
"moduleResolution": "node",
7-
"composite": true,
8-
"noEmit": true,
911
"rootDir": "../",
1012
"lib": ["ESNext", "dom"],
1113
"types": ["nightwatch"]

Diff for: template/tsconfig/vitest/tsconfig.vitest.json

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
"exclude": [],
44
"compilerOptions": {
55
"composite": true,
6+
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.vitest.tsbuildinfo",
7+
68
"lib": [],
79
"types": ["node", "jsdom"]
810
}

0 commit comments

Comments
 (0)