tsconfig.json 341 B

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