tsconfig.json.template 725 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "compileOnSave": false,
  3. "compilerOptions": {
  4. "baseUrl": "./",
  5. "outDir": "./dist/out-tsc",<% if (strict) { %>
  6. "noImplicitAny": true,
  7. "noImplicitReturns": true,
  8. "noImplicitThis": true,
  9. "noFallthroughCasesInSwitch": true,
  10. "strictNullChecks": true,<% } %>
  11. "sourceMap": true,
  12. "declaration": false,
  13. "downlevelIteration": true,
  14. "experimentalDecorators": true,
  15. "module": "esnext",
  16. "moduleResolution": "node",
  17. "importHelpers": true,
  18. "target": "es2015",
  19. "typeRoots": [
  20. "node_modules/@types"
  21. ],
  22. "lib": [
  23. "es2018",
  24. "dom"
  25. ]
  26. },
  27. "angularCompilerOptions": {
  28. "fullTemplateTypeCheck": true,
  29. "strictInjectionParameters": true
  30. }
  31. }