webpack/webpack-cli

View on GitHub
tsconfig.json

Summary

Maintainability
Test Coverage
{
  "exclude": ["node_modules", "lib", "__tests__"],
  "files": [],
  "compilerOptions": {
    "skipLibCheck": true,
    "target": "es2017",
    "module": "commonjs",
    "lib": ["es6", "es2017"],
    "strict": true,
    "rootDir": ".",
    "outDir": "lib",
    "moduleResolution": "node",
    "resolveJsonModule": true,
    "allowSyntheticDefaultImports": true,
    "esModuleInterop": true,
    "baseUrl": ".",
    "paths": {
      "@webpack-cli/*": ["packages/*/src"]
    },
    "composite": true,
    "declaration": true
  },
  "references": [
    {
      "path": "packages/configtest"
    },
    {
      "path": "packages/generators"
    },
    {
      "path": "packages/info"
    },
    {
      "path": "packages/serve"
    },
    {
      "path": "packages/webpack-cli"
    }
  ]
}