15 lines
355 B
JSON
15 lines
355 B
JSON
{
|
|
"extends": "./tsconfig.cjs.json",
|
|
"compilerOptions": {
|
|
"rootDir": ".",
|
|
"typeRoots": ["./node_modules/@types"],
|
|
"types": ["mocha", "chai", "node"],
|
|
},
|
|
"include": ["src/**/*.ts", "tests/**/*.ts", "**/*.test.ts"],
|
|
"exclude": ["node_modules", "dist"],
|
|
"typedocOptions": {
|
|
"entryPoints": ["src/index.ts"],
|
|
"out": "docs"
|
|
}
|
|
}
|