tsconfig.json 361 B

12345678910111213141516171819
  1. {
  2. "extends": "../../tsconfig.json",
  3. "compilerOptions": {
  4. "module": "esnext",
  5. "lib": ["ES2019"],
  6. "rootDirs": ["src", "stories"],
  7. "baseUrl": ".",
  8. "paths": {
  9. "*": ["*", "./src/*"],
  10. "assets/*": ["./assets/*"]
  11. },
  12. "jsx": "preserve",
  13. "declaration": true,
  14. "declarationDir": "dist/types"
  15. },
  16. "exclude": ["node_modules", "dist", "stories"]
  17. }