tsconfig.json 781 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "compileOnSave": false,
  3. "compilerOptions": {
  4. "baseUrl": "./",
  5. "outDir": "./dist/out-tsc",
  6. "sourceMap": true,
  7. "allowSyntheticDefaultImports": true,
  8. "declaration": false,
  9. "downlevelIteration": true,
  10. "experimentalDecorators": true,
  11. "module": "esnext",
  12. "moduleResolution": "node",
  13. "importHelpers": true,
  14. "target": "es2015",
  15. "typeRoots": [
  16. "node_modules/@types"
  17. ],
  18. "lib": [
  19. "es2018",
  20. "dom"
  21. ],
  22. "paths": {
  23. "@app/*": ["src/app/*"],
  24. "@environments/*": ["src/environments/*"],
  25. "@angular/*": ["../node_modules/@angular/*"]
  26. }
  27. },
  28. "angularCompilerOptions": {
  29. "fullTemplateTypeCheck": true,
  30. "strictInjectionParameters": true,
  31. "allowSyntheticDefaultImports": true,
  32. }
  33. }