| 1234567891011121314151617 |
- {
- "extends": "../../tsconfig.base.json",
- "include": ["src"],
- "exclude": ["node_modules", "dist", "docs"],
- "compilerOptions": {
- "outDir": "./dist/types",
- "rootDir": "src",
- "baseUrl": "src",
- "paths": {
- "~*": ["./*"]
- }
- },
- "typedocOptions": {
- "entryPoints": ["src/index.ts"],
- "out": "docs"
- }
- }
|