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.json 294B

1234567891011121314
  1. {
  2. "extends": "../../tsconfig.base.json",
  3. "include": ["src"],
  4. "exclude": ["node_modules", "dist", "docs"],
  5. "compilerOptions": {
  6. "outDir": "./dist/types",
  7. "rootDir": "src",
  8. "baseUrl": "."
  9. },
  10. "typedocOptions": {
  11. "entryPoints": ["src/index.ts"],
  12. "out": "docs"
  13. }
  14. }