Advertisement
kopyl

tsconfig.json

May 15th, 2022
714
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 3.14 KB | None | 0 0
  1. /* To learn more about this file see: https://angular.io/config/tsconfig. */
  2. {
  3.   "compileOnSave": false,
  4.   "compilerOptions": {
  5.     "baseUrl": "./",
  6.     "outDir": "./dist/out-tsc",
  7.     "forceConsistentCasingInFileNames": true,
  8.     "strict": true,
  9.     "noImplicitOverride": true,
  10.     "noImplicitAny": false,
  11.     "strictPropertyInitialization": false,
  12.     "noPropertyAccessFromIndexSignature": true,
  13.     "noImplicitReturns": true,
  14.     "noFallthroughCasesInSwitch": true,
  15.     "sourceMap": true,
  16.     "declaration": false,
  17.     "downlevelIteration": true,
  18.     "experimentalDecorators": true,
  19.     "moduleResolution": "node",
  20.     "importHelpers": true,
  21.     "target": "es2017",
  22.     "module": "es2020",
  23.     "lib": [
  24.       "es2020",
  25.       "dom"
  26.     ],
  27.     "paths": {
  28.         "@interceptors/auth": ["src/app/interceptors/auth/auth.interceptor"],
  29.  
  30.         "@utils/*": ["src/app/utils/*"],
  31.  
  32.         "@services/requests": ["src/app/services/requests/requests.service"],
  33.         "@services/auth": ["src/app/services/auth/google/google-auth.service"],
  34.         "@services/http-error-handler": ["src/app/services/http-error-handler/http-error-handler.service"],
  35.         "@services/online-updater": ["src/app/services/online-updater/online-updater.service"],
  36.         "@services/tooltip": ["src/app/services/tooltip/tooltip.service"],
  37.         "@services/google-analytics": ["src/app/services/google-analytics/google-analytics.service"],
  38.  
  39.         "@components/confirmation-popup": ["src/app/components/confirm-popup/confirm-popup.component"],
  40.         "@components/unauthorized": ["src/app/components/unauthorized/unauthorized.component"],
  41.         "@components/not-found": ["src/app/components/not-found/not-found.component"],
  42.         "@components/main-page": ["src/app/components/main-page/main-page.component"],
  43.         "@components/notification": ["src/app/components/notification/notification.component"],
  44.         "@components/notification/highlight": ["src/app/components/notification/highlight/highlight.component"],
  45.         "@components/notes": ["src/app/components/notes/notes/notes.component"],
  46.         "@components/notes/note": ["src/app/components/notes/note/note.component"],
  47.         "@components/notes/note-for-recipient": ["src/app/components/notes/note-for-recipient/note-for-recipient.component"],
  48.  
  49.         "@directives/form-focus-and-height-adjustment": ["src/app/directives/form-focus-and-height-adjustment/form-focus-and-height-adjustment.directive"],
  50.         "@directives/fix-text-area-size-on-document-resize": ["src/app/directives/fix-text-area-size-on-document-resize/d.directive"],
  51.         "@directives/stop-propagation-on-mobile": ["src/app/directives/stop-propagation-on-mobile/stop-propagation-on-mobile.directive"],
  52.  
  53.         "@animations": ["src/app/animations/animations"],
  54.  
  55.         "@environment": ["src/environments/environment"],
  56.  
  57.         "@icons/icon-share-globe": ["src/app/components/icons/icon-share-globe/icon-share-globe.component"],
  58.  
  59.     }
  60.   },
  61.   "angularCompilerOptions": {
  62.     "enableI18nLegacyMessageIdFormat": false,
  63.     "strictInjectionParameters": true,
  64.     "strictInputAccessModifiers": true,
  65.     "strictTemplates": true
  66.   }
  67. }
  68.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement