tsconfig.backend.json 336 B

12345678910111213141516
  1. {
  2. "extends": "../../tsconfig.backend.json",
  3. "compilerOptions": {
  4. "noImplicitAny": true
  5. },
  6. "include": [
  7. "app/src/**/*",
  8. "modules/*/app/src/**/*",
  9. "modules/*/test/acceptance/**/*",
  10. "modules/*/test/unit/**/*",
  11. "scripts/**/*",
  12. "test/acceptance/**/*",
  13. "test/unit/**/*",
  14. "types/backend/**/*"
  15. ]
  16. }