Files
matrix-js-sdk/tsconfig.json
T
Richard van der Hoff 67f343d6f0 Switch to typedoc for documentation (#2869)
This seems to give *much* better results than jsdoc, and means that we can
start to get rid of all the duplicated type information.
2022-11-11 11:38:04 +00:00

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"
}
}