/ packages / ipfs-http-interface / tsconfig.json
tsconfig.json
 1  {
 2    "compilerOptions": {
 3      "target": "ES2020",
 4      "module": "ES2020",
 5      "moduleResolution": "Bundler",
 6      "esModuleInterop": true,
 7      "allowSyntheticDefaultImports": true,
 8      "strict": true,
 9      "skipLibCheck": true,
10      "forceConsistentCasingInFileNames": true,
11      "sourceMap": true,
12      "outDir": "dist",
13      "types": ["node"]
14    },
15    "include": ["src/**/*.ts"],
16    "exclude": ["node_modules", "dist"]
17  }