tsconfig.json 214 B

12345678910
  1. {
  2. "extends": "../../tsconfig.base.json",
  3. "include": ["src"],
  4. "exclude": ["node_modules", "**/__tests__/*"],
  5. "compilerOptions": {
  6. "rootDir": "src/",
  7. "outDir": "./lib",
  8. "skipLibCheck": true
  9. }
  10. }