Skip to content
This repository was archived by the owner on Jan 22, 2025. It is now read-only.

Commit

Permalink
refactor(experimental): add missing libdefs (#1849)
Browse files Browse the repository at this point in the history
  • Loading branch information
steveluscher authored Nov 15, 2023
1 parent 7c29a1e commit a8b4da6
Show file tree
Hide file tree
Showing 5 changed files with 116 additions and 112 deletions.
1 change: 1 addition & 0 deletions packages/codecs-strings/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@
"@solana/eslint-config-solana": "^1.0.2",
"@swc/jest": "^0.2.29",
"@types/jest": "^29.5.6",
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.3.0",
"agadoo": "^3.0.0",
Expand Down
8 changes: 4 additions & 4 deletions packages/codecs-strings/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"lib": ["DOM", "ES2020", "ES2020.BigInt", "ES2022.Error"]
},
"display": "@solana/codecs-strings",
"extends": "tsconfig/base.json",
"include": ["src"],
"compilerOptions": {
"lib": ["DOM", "ES2020", "ES2022.Error"]
}
"include": ["src"]
}
2 changes: 1 addition & 1 deletion packages/fetch-impl/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"lib": ["DOM"]
"lib": ["DOM", "ES5"]
},
"display": "Fetch Implementation",
"extends": "tsconfig/base.json",
Expand Down
8 changes: 4 additions & 4 deletions packages/options/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"lib": ["DOM", "ES5", "ES2017.TypedArrays"]
},
"display": "@solana/options",
"extends": "tsconfig/base.json",
"include": ["src"],
"compilerOptions": {
"lib": ["DOM"]
}
"include": ["src"]
}
Loading

0 comments on commit a8b4da6

Please sign in to comment.