Skip to content

Commit

Permalink
chore(STK-203): fix silent lint errors on the SDK package
Browse files Browse the repository at this point in the history
  • Loading branch information
ElRodrigote committed Oct 20, 2023
1 parent d17c0b8 commit 348cdd3
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 32 deletions.
6 changes: 3 additions & 3 deletions packages/sdk/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export { ChainId, NATIVE_TOKEN_ADDRESS } from "./constants";
export * from "./entities";
export * from "./vaults";
export { ChainId, NATIVE_TOKEN_ADDRESS } from "./constants";
export * from "./entities";
export * from "./vaults";
58 changes: 29 additions & 29 deletions packages/sdk/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Default",
"exclude": ["node_modules", "dist", "./src/**/*.test.ts"],
"include": ["./src/**/*.ts"],
"compilerOptions": {
"outDir": "./dist",
"lib": ["ES2015"],
"target": "ES2015",
"composite": false,
"declaration": true,
"declarationMap": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"inlineSources": false,
"isolatedModules": true,
"moduleResolution": "node",
"noUnusedLocals": false,
"noUnusedParameters": false,
"preserveWatchOutput": true,
"skipLibCheck": true,
"strict": true,
"useUnknownInCatchVariables": false,
"paths": {
"tslib": ["./node_modules/tslib/"]
}
}
}
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Default",
"exclude": ["node_modules", "dist", "./src/**/*.test.ts"],
"include": ["./src/**/*.ts"],
"compilerOptions": {
"outDir": "./dist",
"lib": ["ES2015"],
"target": "ES2015",
"composite": false,
"declaration": true,
"declarationMap": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"inlineSources": false,
"isolatedModules": true,
"moduleResolution": "node",
"noUnusedLocals": false,
"noUnusedParameters": false,
"preserveWatchOutput": true,
"skipLibCheck": true,
"strict": true,
"useUnknownInCatchVariables": false,
"paths": {
"tslib": ["./node_modules/tslib/"]
}
}
}

0 comments on commit 348cdd3

Please sign in to comment.