Skip to content

Commit c0b09c6

Browse files
chore: rename the test tsconfig file to avoid ides using it as an actual tsconfig file
1 parent b8ec006 commit c0b09c6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

scripts/compile-tests.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ async function createTestsTsConfig() {
5353
*/
5454
async function createTestsHelpersTsConfig() {
5555
return fs.copyFile(
56-
"tests/helpers/tsconfig.json",
57-
"build/tests/helpers/tsconfig.json"
56+
"tests/helpers/test-tsconfig.json",
57+
"build/tests/helpers/test-tsconfig.json"
5858
);
5959
}
6060

tests/helpers/configs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export const configs = {
1212
parser: require.resolve(typescriptParser),
1313
parserOptions: {
1414
sourceType: "module",
15-
project: path.join(__dirname, "./tsconfig.json"),
15+
project: path.join(__dirname, "./test-tsconfig.json"),
1616
},
1717
} as Linter.Config,
1818

File renamed without changes.

0 commit comments

Comments
 (0)