Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. //tsconfig.server.json
  2. "compilerOptions":{
  3. "baseUrl": ".",
  4. "paths": {
  5. "@env/*": ["./enviroment/*"]
  6. ...
  7. },
  8. }
  9.  
  10.  
  11.  
  12. //and in a component I use like this:
  13. import { X } from '@env/enviroment'
  14.  
  15. import { environment } from 'environments/environment';
  16.  
  17. import { environment } from '../environments/environment';
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement