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

123456789101112131415161718
  1. {
  2. "extends": "../../tsconfig.base.json",
  3. "include": ["src", "src/test/*.json"],
  4. "exclude": ["node_modules", "dist", "docs"],
  5. "compilerOptions": {
  6. "resolveJsonModule": true,
  7. "outDir": "./dist/types",
  8. "rootDir": "src",
  9. "baseUrl": "src",
  10. "paths": {
  11. "~*": ["./*"]
  12. }
  13. },
  14. "typedocOptions": {
  15. "entryPoints": ["src/index.ts"],
  16. "out": "docs"
  17. }
  18. }