tsconfig.backend.json 471 B

12345678910111213141516171819202122
  1. {
  2. "compilerOptions": {
  3. "allowJs": true,
  4. "esModuleInterop": true,
  5. "moduleResolution": "node",
  6. "noEmit": true,
  7. "noImplicitAny": false,
  8. "skipLibCheck": true,
  9. "strict": true
  10. },
  11. "include": [
  12. "app/src/**/*",
  13. "modules/*/app/src/**/*",
  14. "modules/*/test/acceptance/**/*",
  15. "modules/*/test/smoke/**/*",
  16. "modules/*/test/unit/**/*",
  17. "scripts/**/*",
  18. "test/acceptance/**/*",
  19. "test/smoke/**/*",
  20. "test/unit/**/*"
  21. ]
  22. }