tsconfig.json 320 B

123456789101112131415
  1. {
  2. "extends": "../../tsconfig.json",
  3. "compilerOptions": {
  4. "module": "esnext",
  5. "rootDirs": ["src", "stories"],
  6. "baseUrl": "src",
  7. "jsx": "preserve",
  8. "declaration": true,
  9. "declarationDir": "dist/types",
  10. "typeRoots": ["./@types", "node_modules/@types"]
  11. },
  12. "exclude": ["node_modules", "dist", "stories"]
  13. }