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 338B

1234567891011121314151617
  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. "paths": {
  10. "~*": ["./*"]
  11. }
  12. },
  13. "typedocOptions": {
  14. "entryPoints": ["src/index.ts"],
  15. "out": "docs"
  16. }
  17. }