tsconfig.json 631 B

12345678910111213141516171819202122232425
  1. {
  2. "compileOnSave": false,
  3. "compilerOptions": {
  4. "allowJs": false,
  5. "allowSyntheticDefaultImports": true,
  6. "baseUrl": "./",
  7. "declaration": false,
  8. "downlevelIteration": true,
  9. "emitDecoratorMetadata": true,
  10. "esModuleInterop": true,
  11. "experimentalDecorators": true,
  12. "importHelpers": true,
  13. "lib": ["es2018", "dom"],
  14. "resolveJsonModule": true,
  15. "sourceMap": true,
  16. "skipLibCheck": true,
  17. "target": "es5",
  18. },
  19. "angularCompilerOptions": {
  20. "strictTemplates": true,
  21. "enableResourceInlining": true,
  22. "fullTemplateTypeCheck": true,
  23. "strictInjectionParameters": true
  24. }
  25. }