tsconfig.json 747 B

12345678910111213141516171819202122232425262728
  1. {
  2. "compilerOptions": {
  3. "target": "es5",
  4. "lib": ["dom", "dom.iterable", "esnext"],
  5. "allowJs": true,
  6. "skipLibCheck": true,
  7. "esModuleInterop": true,
  8. "allowSyntheticDefaultImports": true,
  9. "strict": true,
  10. "forceConsistentCasingInFileNames": true,
  11. "module": "esnext",
  12. "moduleResolution": "node",
  13. "resolveJsonModule": true,
  14. "isolatedModules": false,
  15. "noEmit": true,
  16. "jsx": "react",
  17. "baseUrl": "./src",
  18. "paths": {
  19. "@/*": ["./*"],
  20. "components/*": ["./src/components/*"],
  21. "store/*": ["./src/store/*"],
  22. "pages/*": ["./src/pages/*"],
  23. "router/*": ["./src/router/*"],
  24. "utils/*": ["./src/utils/*"]
  25. }
  26. },
  27. "include": ["src"]
  28. }