2022-04-01 12:34:20 -07:00
|
|
|
{
|
2022-05-27 09:17:44 -07:00
|
|
|
"extends": "./tsconfig.cjs.json",
|
2022-04-01 12:34:20 -07:00
|
|
|
"compilerOptions": {
|
2022-05-27 09:17:44 -07:00
|
|
|
"rootDir": ".",
|
2022-04-08 14:10:56 -07:00
|
|
|
"typeRoots": ["./node_modules/@types"],
|
2022-04-23 05:01:59 -07:00
|
|
|
"types": ["mocha", "chai", "node"],
|
2022-04-01 12:34:20 -07:00
|
|
|
},
|
2022-05-27 09:17:44 -07:00
|
|
|
"include": ["src/**/*.ts", "tests/**/*.ts", "**/*.test.ts"],
|
|
|
|
"exclude": ["node_modules", "dist"],
|
2022-05-14 19:52:26 -07:00
|
|
|
"typedocOptions": {
|
|
|
|
"entryPoints": ["src/index.ts"],
|
|
|
|
"out": "docs"
|
|
|
|
}
|
2022-04-01 12:34:20 -07:00
|
|
|
}
|