Skip to content

Commit 49d7681

Browse files
committed
fix tsc
1 parent b9e61fc commit 49d7681

File tree

4 files changed

+154
-187
lines changed

4 files changed

+154
-187
lines changed

config/base.tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"compilerOptions": {
3-
"module": "commonjs",
3+
"module": "nodenext",
44
"noImplicitAny": false,
55
"target": "esnext",
66
"allowSyntheticDefaultImports": true,
77
"esModuleInterop": true,
88
"strict": true,
99
"skipLibCheck": true,
10-
"moduleResolution": "node",
10+
"moduleResolution": "nodenext",
1111
"removeComments": true,
1212
"sourceMap": true,
1313
"noLib": false,

templates/javascript/tests/package.mustache

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
},
77
"dependencies": {
88
"algoliasearch": "link:../../../clients/algoliasearch-client-javascript/packages/algoliasearch",
9-
"@algolia/client-common": "link:../../../clients/algoliasearch-client-javascript/packages/client-common",
109
"@algolia/requester-testing": "link:../../../clients/algoliasearch-client-javascript/packages/requester-testing"
1110
},
1211
"devDependencies": {

tests/output/javascript/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"extends": "../../../config/base.tsconfig.json",
33
"compilerOptions": {
4-
"typeRoots": ["../../../node_modules/@types"],
4+
"skipLibCheck": false,
55
"types": ["node"],
66
"lib": ["dom", "esnext"]
77
},

0 commit comments

Comments
 (0)