Skip to content

Commit 6bf2eb7

Browse files
sukvvonmanudeli
andauthored
chore(tsconfig.json): add 'test-setup.ts' to 'include' array (#9545)
Co-authored-by: Jonghyeon Ko <manudeli.ko@gmail.com>
1 parent 77e53b0 commit 6bf2eb7

File tree

4 files changed

+29
-4
lines changed

4 files changed

+29
-4
lines changed

packages/angular-query-experimental/tsconfig.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@
77
"useDefineForClassFields": false,
88
"target": "ES2022"
99
},
10-
"include": ["src", "scripts", "*.config.js", "*.config.ts", "package.json"],
10+
"include": [
11+
"src",
12+
"scripts",
13+
"test-setup.ts",
14+
"*.config.js",
15+
"*.config.ts",
16+
"package.json"
17+
],
1118
"references": [{ "path": "../query-core" }, { "path": "../query-devtools" }]
1219
}

packages/angular-query-persist-client/tsconfig.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,13 @@
77
"useDefineForClassFields": false,
88
"target": "ES2022"
99
},
10-
"include": ["src", "*.config.js", "*.config.ts", "package.json"],
10+
"include": [
11+
"src",
12+
"test-setup.ts",
13+
"*.config.js",
14+
"*.config.ts",
15+
"package.json"
16+
],
1117
"references": [
1218
{ "path": "../angular-query-experimental" },
1319
{ "path": "../query-persist-client-core" }

packages/query-broadcast-client-experimental/tsconfig.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
44
"outDir": "./dist-ts",
55
"rootDir": "."
66
},
7-
"include": ["src", "*.config.js", "*.config.ts", "package.json"],
7+
"include": [
8+
"src",
9+
"test-setup.ts",
10+
"*.config.js",
11+
"*.config.ts",
12+
"package.json"
13+
],
814
"references": [{ "path": "../query-core" }]
915
}

packages/react-query/tsconfig.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,11 @@
55
"rootDir": ".",
66
"jsx": "react-jsx"
77
},
8-
"include": ["src", "*.config.js", "*.config.ts", "package.json"]
8+
"include": [
9+
"src",
10+
"test-setup.ts",
11+
"*.config.js",
12+
"*.config.ts",
13+
"package.json"
14+
]
915
}

0 commit comments

Comments
 (0)