You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tsconfig.build.json 312B

123456789101112131415161718
  1. {
  2. "extends": "./tsconfig.json",
  3. "exclude": [
  4. "node_modules",
  5. "**/*.test.tsx",
  6. "**/*.test.ts",
  7. "**/*.spec.tsx",
  8. "**/*.spec.ts",
  9. "src/test",
  10. "dist",
  11. "docs"
  12. ],
  13. "compilerOptions": {
  14. "incremental": false,
  15. "emitDeclarationOnly": true,
  16. "outDir": "./dist/types"
  17. }
  18. }