tsconfig.json 594 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "compileOnSave": false,
  3. "compilerOptions": {
  4. "outDir": "./dist/out-tsc",
  5. "sourceMap": true,
  6. "declaration": false,
  7. "moduleResolution": "node",
  8. "emitDecoratorMetadata": true,
  9. "experimentalDecorators": true,
  10. "target": "es5",
  11. "typeRoots": [
  12. "node_modules/@types"
  13. ],
  14. "lib": [
  15. "esnext",
  16. "dom"
  17. ],
  18. "baseUrl": "./src/",
  19. "paths": {
  20. "@directives/*": [
  21. "app/directives/*"
  22. ],
  23. "@pipes/*": [
  24. "app/pipes/*"
  25. ],
  26. "@mock/*": [
  27. "app/_mock/*"
  28. ]
  29. },
  30. "module": "es2015"
  31. }
  32. }