Skip to content

Commit

Permalink
skip lib check due to lru-cache issue with the Iterator TReturn change
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremymeng committed Sep 16, 2024
1 parent 2155d17 commit 0610b5b
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"extends": "../../../tsconfig",
"compilerOptions": {
"module": "NodeNext",
"moduleResolution": "NodeNext"
"moduleResolution": "NodeNext",
"skipLibCheck": true,
},
"exclude": ["./src/templates/**"],
"include": [
Expand Down
3 changes: 2 additions & 1 deletion sdk/schemaregistry/schema-registry-avro/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"paths": {
"@azure/schema-registry-avro": ["./src/index"]
},
"lib": ["dom"]
"lib": ["dom"],
"skipLibCheck": true
},
"include": ["src/**/*.ts", "test/**/*.ts", "samples-dev/**/*.ts"]
}
3 changes: 2 additions & 1 deletion sdk/schemaregistry/schema-registry-json/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"paths": {
"@azure/schema-registry-json": ["./src/index"]
},
"lib": ["dom"]
"lib": ["dom"],
"skipLibCheck": true
},
"include": ["src/**/*.ts", "test/**/*.ts", "samples-dev/**/*.ts"]
}
3 changes: 2 additions & 1 deletion sdk/search/search-documents/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"outDir": "./dist-esm",
"paths": {
"@azure/search-documents": ["./src/index"]
}
},
"skipLibCheck": true,
},
"include": ["samples-dev/**/*.ts", "src/**/*.ts", "test/**/*.ts"]
}

0 comments on commit 0610b5b

Please sign in to comment.