Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

tsconfig.json 330B

123456789101112131415
  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": "src",
  9. "emitDeclarationOnly": false
  10. },
  11. "typedocOptions": {
  12. "entryPoints": ["src/index.ts"],
  13. "out": "docs"
  14. }
  15. }