tsconfig.json 906 B

123456789101112131415161718192021222324252627282930313233343536
  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. "es2017",
  16. "dom"
  17. ],
  18. "baseUrl": "src/",
  19. "paths": {
  20. "@shared": [ "app/shared" ],
  21. "@shared/*": [ "app/shared/*" ],
  22. "@core": [ "app/core/" ],
  23. "@core/*": [ "app/core/*" ],
  24. "@testing": [ "testing/" ],
  25. "@testing/*": [ "testing/*" ],
  26. "@env": [ "environments/" ],
  27. "@env/*": [ "environments/*" ],
  28. "@index":["app/component"],
  29. "@config":[ "app/config/config" ],
  30. "@tools":[ "app/config/tool-fun" ],
  31. "@ajax":[ "app/services/ajax.service" ],
  32. "@models":["app/models/"]
  33. }
  34. }
  35. }