Skip to content

Commit

Permalink
Merge pull request #86 from lidofinance/packages-build-update
Browse files Browse the repository at this point in the history
fix: update tsconfig for packages && up ts
skhomuti authored Sep 11, 2023
2 parents eea269b + ab027c1 commit d7923c5
Showing 2 changed files with 15 additions and 8 deletions.
11 changes: 7 additions & 4 deletions packages/extensions/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,26 @@
{
"compilerOptions": {
"skipLibCheck": true,
"alwaysStrict": true,
"strict": true,
"esModuleInterop": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"strictNullChecks": true,
"strictNullChecks": false,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"noImplicitAny": false,
"declaration": true,
"declarationMap": true,
"incremental": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"module": "esnext",
"target": "es2017",
"module": "commonjs",
"target": "ES2020",
"resolveJsonModule": true,
"composite": true,
"sourceMap": true,
"lib": ["ES2020"],
"outDir": "./dist",
"rootDir": "."
},
12 changes: 8 additions & 4 deletions packages/wallets/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,26 @@
{
"compilerOptions": {
"skipLibCheck": true,
"alwaysStrict": true,
"strict": true,
"esModuleInterop": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"strictNullChecks": true,
"strictNullChecks": false,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"noImplicitAny": false,
"declaration": true,
"declarationMap": true,
"incremental": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"module": "esnext",
"target": "es2017",
"module": "commonjs",
"target": "ES2020",
"resolveJsonModule": true,
"composite": true,
"sourceMap": true,
"lib": ["ES2020"],
"outDir": "./dist",
"rootDir": "."
},

0 comments on commit d7923c5

Please sign in to comment.