tsconfig.json 820 B

1234567891011121314151617181920212223242526
  1. {
  2. "compilerOptions": {
  3. "lib": ["es2022"],
  4. "target": "es2022",
  5. "module": "CommonJS",
  6. "moduleResolution": "node10",
  7. "strict": true,
  8. "skipLibCheck": true,
  9. "sourceMap": true,
  10. "declaration": true,
  11. "types": ["jasmine", "node"],
  12. "paths": {
  13. "@angular/cdk/schematics": ["../../cdk/schematics"],
  14. "@angular/cdk/schematics/*": ["../../cdk/schematics/*"]
  15. }
  16. },
  17. "exclude": [
  18. "**/*.spec.ts",
  19. // Exclude the test-setup utility files. Those should not be part of the output.
  20. "test-setup/**/*.ts",
  21. // Exclude template files that will be copied by the schematics. Those are not valid TS.
  22. "ng-generate/*/files/**/*.ts",
  23. // Exclude all test-case files because those should not be included in the schematics output.
  24. "ng-update/test-cases/**/*.ts"
  25. ]
  26. }