Skip to content

Commit 862a6f5

Browse files
committed
fix(tsconfig): test config uses NodeNext — Node16 was flagged deprecated by user's TS service
User's IDE flagged 'Node16' as deprecated even though TS 5.9.3 accepts it without warning at compile time. NodeNext is the current non-deprecated value and pairs cleanly with our CommonJS-emitting test compile (NodeNext auto-detects module format from package.json type field — our extension package.json has no 'type' so commonjs).
1 parent 9ab27d4 commit 862a6f5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

extension/test/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"compilerOptions": {
33
"target": "ES2022",
4-
"module": "Node16",
5-
"moduleResolution": "Node16",
4+
"module": "NodeNext",
5+
"moduleResolution": "NodeNext",
66
"lib": ["ES2022"],
77
"strict": true,
88
"esModuleInterop": true,

0 commit comments

Comments
 (0)