tsconfig.base.json 506 B

12345678910111213141516171819202122
  1. {
  2. "compilerOptions": {
  3. "target": "es2017",
  4. "module": "esnext",
  5. "lib": ["esnext", "DOM"],
  6. "moduleResolution": "node",
  7. "esModuleInterop": true,
  8. "strict": true,
  9. "strictNullChecks": true,
  10. "skipLibCheck": true,
  11. "resolveJsonModule": true,
  12. "baseUrl": ".",
  13. "paths": {
  14. "~/*": ["src/*"],
  15. "@io/*": ["src/io/*"],
  16. "@relay/*": ["src/relay/*"],
  17. "@store/*": ["src/store/*"],
  18. "@type/*": ["src/type/*"],
  19. "@util/*": ["src/util/*"]
  20. }
  21. }
  22. }