tsconfig.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
  2. /* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
  3. {
  4. "compileOnSave": false,
  5. "compilerOptions": {
  6. "strict": false,
  7. "skipLibCheck": true,
  8. "isolatedModules": false,
  9. "useDefineForClassFields": false,
  10. "experimentalDecorators": true,
  11. "importHelpers": true,
  12. "resolveJsonModule": true,
  13. "target": "ES2022",
  14. "module": "preserve",
  15. "baseUrl": ".",
  16. "noImplicitAny": false,
  17. "strictPropertyInitialization": false,
  18. "paths": {
  19. "dp-ui": ["dependencies/dp-ui/dp.module"],
  20. "dp-ui/*": ["dependencies/dp-ui/*"],
  21. "angularlib": ["dependencies/angularlib/angularlib.module"],
  22. "angularlib/*": ["dependencies/angularlib/*"],
  23. "assets/language.packs/*": ["src/assets/language.packs/*"]
  24. }
  25. },
  26. "angularCompilerOptions": {
  27. "enableI18nLegacyMessageIdFormat": false,
  28. "strictInjectionParameters": false,
  29. "strictInputAccessModifiers": false,
  30. "typeCheckHostBindings": false,
  31. "strictTemplates": false
  32. },
  33. "files": [],
  34. "references": [
  35. {
  36. "path": "./tsconfig.app.json"
  37. },
  38. {
  39. "path": "./tsconfig.spec.json"
  40. }
  41. ]
  42. }