Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit b1505e4

Browse files
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

‎template/tsconfig/base/tsconfig.app.json

Lines changed: 2 additions & 1 deletion
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/*"]

‎template/tsconfig/base/tsconfig.node.json

Lines changed: 2 additions & 0 deletions
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"]

‎template/tsconfig/cypress-ct/tsconfig.cypress-ct.json

Lines changed: 2 additions & 1 deletion
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
}

‎template/tsconfig/nightwatch-ct/tsconfig.app.json

Lines changed: 2 additions & 1 deletion
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/*"]

‎template/tsconfig/nightwatch/nightwatch/tsconfig.json

Lines changed: 4 additions & 2 deletions
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"]

‎template/tsconfig/vitest/tsconfig.vitest.json

Lines changed: 2 additions & 0 deletions
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)

AltStyle によって変換されたページ (->オリジナル) /