Skip to content

Commit c185a72

Browse files
committed
fix
1 parent af6b029 commit c185a72

3 files changed

Lines changed: 12 additions & 3 deletions

File tree

e2e/typescript/commonjs/tsconfig.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@
88
"module": "CommonJS",
99
"outDir": "./dist",
1010
"target": "es2020",
11-
"strict": true
11+
"strict": true,
12+
"types": [
13+
"node"
14+
]
1215
},
1316
"include": ["index.cts"],
1417
"exclude": ["./index.cjs"],

e2e/typescript/esm--node-next/tsconfig.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@
99
"moduleResolution": "NodeNext",
1010
"outDir": "./dist",
1111
"target": "es2020",
12-
"strict": true
12+
"strict": true,
13+
"types": [
14+
"node"
15+
]
1316
},
1417
"include": ["index.ts"],
1518
"exclude": ["./index.mjs"],

e2e/typescript/esm/tsconfig.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@
99
"moduleResolution": "Node16",
1010
"outDir": "./dist",
1111
"target": "es2020",
12-
"strict": true
12+
"strict": true,
13+
"types": [
14+
"node"
15+
]
1316
},
1417
"include": ["./index.mts"],
1518
"exclude": ["./index.mjs"],

0 commit comments

Comments
 (0)