removing console logs

pull/1342/head
davidzagi93@gmail.com 3 years ago
parent 91b154b4e9
commit 8f9a92d725
  1. 2
      apps/remix-ide/src/app/files/dgitProvider.js
  2. 3
      tsconfig.json

@ -415,9 +415,7 @@ class DGitProvider extends Plugin {
const ipfs = IpfsHttpClient(config)
let result = false
try {
console.log('try ', config)
const data = ipfs.get(cid, { timeout: 60000 })
console.log(config, cid, workspace, data)
for await (const file of data) {
if (file.path) result = true
file.path = file.path.replace(cid, '')

@ -14,7 +14,8 @@
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {}
"paths": {},
"allowSyntheticDefaultImports": true
},
"exclude": ["node_modules", "tmp"]
}

Loading…
Cancel
Save