Skip to content

Commit 49102e8

Browse files
committed
Running unit tests with TypeScript 5.6
1 parent e88b70b commit 49102e8

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@
6565
"typescript_5.2": "npm:[email protected]",
6666
"typescript_5.3": "npm:[email protected]",
6767
"typescript_5.4": "npm:[email protected]",
68-
"typescript_5.5": "npm:[email protected]"
68+
"typescript_5.5": "npm:[email protected]",
69+
"typescript_5.6": "npm:[email protected]"
6970
},
7071
"engines": {
7172
"node": ">=16.0.0"

test/spec/ts-defs.spec.mjs

+1
Original file line numberDiff line numberDiff line change
@@ -206,5 +206,6 @@ describe
206206
describe('TypeScript 5.3', () => defineTests('typescript_5.3'));
207207
describe('TypeScript 5.4', () => defineTests('typescript_5.4'));
208208
describe('TypeScript 5.5', () => defineTests('typescript_5.5'));
209+
describe('TypeScript 5.6', () => defineTests('typescript_5.6'));
209210
},
210211
);

tsconfig.json

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"forceConsistentCasingInFileNames": true,
55
"module": "Node16",
66
"moduleResolution": "Node16",
7+
"noUncheckedSideEffectImports": true,
78
"strict": true,
89
"target": "ES2020"
910
},

0 commit comments

Comments
 (0)