tsconfig.json 445 B

12345678910111213141516171819202122
  1. {
  2. "extends": "../../tsconfig.json",
  3. "compilerOptions": {
  4. "baseUrl": "./src",
  5. "declaration": true,
  6. "declarationDir": "dist",
  7. "lib": ["DOM", "ES2019"],
  8. "paths": {
  9. "components": ["components"],
  10. "shared": ["shared"],
  11. "shared/*": ["shared/*"],
  12. "store": ["store"],
  13. "theme": ["theme"],
  14. "views": ["views"]
  15. }
  16. },
  17. "exclude": ["node_modules", "dist", "src/shared/stories"],
  18. "include": ["src/**/*.tsx", "src/**/*.ts"]
  19. }