Skip to content
This repository has been archived by the owner on Dec 5, 2021. It is now read-only.

Commit

Permalink
Remove unnecessary tsconfig arguments (ethereum-optimism#798)
Browse files Browse the repository at this point in the history
* style: fix indenting

* build: remove skipLibCheck, paths, and baseUrl from base typescript config
  • Loading branch information
snario authored May 7, 2021
1 parent 5f3b2cf commit 467e275
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
4 changes: 2 additions & 2 deletions tsconfig.build.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"typeRoots": [
"node_modules/@types"
]
"node_modules/@types"
]
},
"exclude": [
"node_modules",
Expand Down
9 changes: 1 addition & 8 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
{
"extends": "./tsconfig.build.json",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@eth-optimism/*": ["packages/*/src", "integration-tests/*/test"]
},
"skipLibCheck": true
}
"extends": "./tsconfig.build.json"
}

0 comments on commit 467e275

Please sign in to comment.