Commit 467e2757 authored by Liam Horne's avatar Liam Horne Committed by GitHub

Remove unnecessary tsconfig arguments (#798)

* style: fix indenting

* build: remove skipLibCheck, paths, and baseUrl from base typescript config
parent 5f3b2cfd
...@@ -12,8 +12,8 @@ ...@@ -12,8 +12,8 @@
"emitDecoratorMetadata": true, "emitDecoratorMetadata": true,
"experimentalDecorators": true, "experimentalDecorators": true,
"typeRoots": [ "typeRoots": [
"node_modules/@types" "node_modules/@types"
] ]
}, },
"exclude": [ "exclude": [
"node_modules", "node_modules",
......
{ {
"extends": "./tsconfig.build.json", "extends": "./tsconfig.build.json"
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@eth-optimism/*": ["packages/*/src", "integration-tests/*/test"]
},
"skipLibCheck": true
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment