trufflesuite/truffle

View on GitHub
packages/expect/tsconfig.json

Summary

Maintainability
Test Coverage
{
  "compilerOptions": {
    "sourceMap": true,
    "declaration": true,
    "esModuleInterop": true,
    "lib": ["esnext"],
    "skipLibCheck": true,
    "target": "es2016",
    "moduleResolution": "node",
    "downlevelIteration": true,
    "allowSyntheticDefaultImports": true,
    "module": "commonjs",
    "outDir": "./dist",
    "strictBindCallApply": true,
    "strictNullChecks": true,
    "paths": {
      "@truffle/expect": ["./src"],
      "@truffle/expect/*": ["./src/*"],
      "test/*": ["./test/*"]
    },
    "rootDir": ".",
    "baseUrl": ".",
    "types": [
      "node"
    ],
    "plugins": [
      { "transform": "typescript-transform-paths" },
      { "transform": "typescript-transform-paths", "afterDeclarations": true }
    ]
  },
  "include": [
    "src/**/*",
    "bin/**/*",
    "test/**/*"
  ],
  "exclude": [
    "node_modules"
  ]
}