Skip to content

Commit 7a0dedf

Browse files
committed
move tools definitions tests to a separate directory
1 parent e13470d commit 7a0dedf

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

tests/type-definitions/runner.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ async function prepareEnvironment(environments, coreJsTypes) {
151151
}
152152

153153
let tasks = [
154-
{ ts: '5.9', config: 'tsconfig.json' },
154+
{ ts: '5.9', config: 'tools/tsconfig.json' },
155155
{ ts: '5.9', config: 'templates/tsconfig.json' },
156156
{ ts: '5.9', config: 'templates/tsconfig.require.json' },
157157
{ ts: '5.9', config: 'entries/full/tsconfig.json' },
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"extends": "../tsconfig.json",
3+
"include": [
4+
"./builder.ts",
5+
"./compat.ts"
6+
]
7+
}

tests/type-definitions/tsconfig.json

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,5 @@
66
"esModuleInterop": true,
77
"moduleResolution": "node",
88
"noEmit": true
9-
},
10-
"include": [
11-
"./builder.ts",
12-
"./compat.ts"
13-
]
9+
}
1410
}

0 commit comments

Comments
 (0)