/ duper-js-node / tsconfig.json
tsconfig.json
 1  {
 2    "compilerOptions": {
 3      "target": "ESNext",
 4      "module": "CommonJS",
 5      "moduleResolution": "node",
 6      "outDir": "dist",
 7      "rootDir": "lib",
 8      "strict": true,
 9      "esModuleInterop": true,
10      "allowSyntheticDefaultImports": true,
11      "skipLibCheck": true,
12      "forceConsistentCasingInFileNames": true,
13      "declaration": true,
14      "emitDeclarationOnly": true,
15      "sourceMap": true
16    },
17    "include": ["lib/**/*"],
18    "exclude": ["node_modules", "tests"]
19  }