trufflesuite/truffle

View on GitHub
packages/workflow-compile/tsconfig.json

Summary

Maintainability
Test Coverage
{
  "compilerOptions": {
    "sourceMap": true,
    "declaration": true,
    "allowJs": true,
    "esModuleInterop": true,
    "lib": ["esnext", "dom"],
    "skipLibCheck": true,
    "target": "es2016",
    "moduleResolution": "node",
    "downlevelIteration": true,
    "allowSyntheticDefaultImports": true,
    "module": "commonjs",
    "outDir": "./dist",
    "strictBindCallApply": true,
    "strictNullChecks": true,
    "rootDir": "./src",
    "baseUrl": ".",
    "types": [ "mocha" ],
  },
  "include": [
    "src/**/*"
  ],
  "exclude": [
    "dist",
    "node_modules"
  ]
}