24 lines
572 B
JSON
24 lines
572 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"allowSyntheticDefaultImports": true,
|
|
"declaration": true,
|
|
"declarationDir": "./dist/types",
|
|
"declarationMap": false,
|
|
"emitDeclarationOnly": true,
|
|
"outDir": "./dist/esm",
|
|
"strict": true,
|
|
"skipLibCheck": false,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"include": ["src/**/*.ts"],
|
|
"typedocOptions": {
|
|
"out": "../../docs/api",
|
|
"readme": "none",
|
|
"includes": "./src/index.ts",
|
|
"exclude": [],
|
|
"excludeExternals": true,
|
|
"excludePrivate": true
|
|
}
|
|
}
|