This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
skynet-webportal/packages/ipfs-api/tsconfig.json

19 lines
427 B
JSON

{
"compilerOptions": {
"module": "CommonJS",
"target": "es5",
"noImplicitReturns": true,
"noUnusedLocals": true,
"outDir": "dist",
"sourceMap": true,
"strict": false,
"lib": ["es2020"],
"esModuleInterop": true,
"skipLibCheck": true,
"typeRoots": ["./types", "./node_modules/@types"]
},
"include": ["./src"],
"exclude": ["./node_modules", "./dist"],
"compileOnSave": true
}