tsconfig.json 363 B

12345678910111213141516
  1. {
  2. "files": [],
  3. "compilerOptions": {
  4. "paths": {
  5. "@/*": ["./src/*"],
  6. "@components/*": ["./src/components/*"],
  7. "@style/*": ["./src/styles/*"],
  8. "@images/*": ["./src/assets/static/images/*"],
  9. "types/*": ["./types/*"]
  10. }
  11. },
  12. "references": [
  13. { "path": "./tsconfig.app.json" },
  14. { "path": "./tsconfig.node.json" }
  15. ]
  16. }