a small private-blog service

tsconfig-aot.json 822B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "compilerOptions": {
  3. "target": "es5",
  4. "module": "es2015",
  5. "moduleResolution": "node",
  6. "sourceMap": false,
  7. "emitDecoratorMetadata": true,
  8. "experimentalDecorators": true,
  9. "removeComments": false,
  10. "noImplicitAny": false,
  11. "suppressImplicitAnyIndexErrors": true,
  12. "skipLibCheck": true,
  13. "outDir": "target/www/app",
  14. "lib": ["es7", "dom"],
  15. "typeRoots": [
  16. "node_modules/@types"
  17. ],
  18. "baseUrl": "./",
  19. "paths": {
  20. "app/*": ["src/main/webapp/app/*"]
  21. },
  22. "importHelpers": true
  23. },
  24. "angularCompilerOptions": {
  25. "genDir": "target/aot",
  26. "skipMetadataEmit" : true,
  27. "fullTemplateTypeCheck": true,
  28. "preserveWhitespaces": true
  29. }
  30. }