tsconfig.json 318 B

1234567891011121314
  1. {
  2. "extends": "../../../../tsconfig.base.json",
  3. "compilerOptions": {
  4. "target": "esnext",
  5. "module": "commonjs",
  6. "declaration": true,
  7. "rootDir": "src/",
  8. "outDir": "./lib",
  9. "strict": true,
  10. "esModuleInterop": true
  11. },
  12. "include": ["src"],
  13. "exclude": ["node_modules", "**/__tests__/*"]
  14. }