Skip to content

Commit

Permalink
chore: fix tsconfig and package-lock for starknet example
Browse files Browse the repository at this point in the history
  • Loading branch information
Riateche committed Jun 13, 2024
1 parent f9a95a9 commit 3929b13
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 14 deletions.
4 changes: 3 additions & 1 deletion price_feeds/starknet/send_usd/client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 7 additions & 13 deletions price_feeds/starknet/send_usd/client/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,12 @@
{
"compilerOptions": {
"target": "esnext",
"target": "es2016",
"module": "commonjs",
"outDir": "./lib",
"rootDir": "src/",
"esModuleInterop": true,
"resolveJsonModule": true
},
"include": [
"src",
"src/**/*.json",
],
"exclude": [
"node_modules",
"**/__tests__/*"
]
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"outDir": "./lib"
}
}

0 comments on commit 3929b13

Please sign in to comment.