tsconfig.build.json 419 B

1234567891011121314
  1. {
  2. "$schema": "https://json.schemastore.org/tsconfig",
  3. "extends": "./tsconfig.json",
  4. "compilerOptions": {
  5. "rootDir": "src",
  6. "outDir": "dist",
  7. "noEmit": false,
  8. // Publish declarations so consumer compiler options do not typecheck our TSX implementation.
  9. "declaration": true,
  10. "emitDeclarationOnly": true
  11. },
  12. "include": ["src"],
  13. "exclude": ["**/*.stories.*", "**/*.test.*", "**/*.mdx"]
  14. }