tsconfig.build.json 418 B

1234567891011121314151617181920
  1. {
  2. "extends": "../../../tsconfig.shared",
  3. "compilerOptions": {
  4. "outDir": "./lib",
  5. "rootDir": "./src",
  6. "resolveJsonModule": false,
  7. "noImplicitAny": false,
  8. "skipLibCheck": true
  9. },
  10. "include": ["./src/**/*.*"],
  11. "exclude": ["./src/**/*.test.ts"],
  12. "references": [
  13. {
  14. "path": "../store-default/tsconfig.build.json"
  15. },
  16. {
  17. "path": "../utils/tsconfig.build.json"
  18. }
  19. ]
  20. }