67f343d6f0
This seems to give *much* better results than jsdoc, and means that we can start to get rid of all the duplicated type information.
24 lines
473 B
JSON
24 lines
473 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2016",
|
|
"experimentalDecorators": true,
|
|
"esModuleInterop": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": false,
|
|
"noUnusedLocals": true,
|
|
"noEmit": true,
|
|
"declaration": true,
|
|
"strict": true
|
|
},
|
|
"include": [
|
|
"./src/**/*.ts",
|
|
"./spec/**/*.ts"
|
|
],
|
|
"typedocOptions": {
|
|
"entryPoints": ["src/index.ts"],
|
|
"excludeExternals": true,
|
|
"out": "_docs"
|
|
}
|
|
}
|