mirror of https://github.com/vladmandic/human
41 lines
1.0 KiB
JSON
41 lines
1.0 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"module": "es2020",
|
|
"target": "es2018",
|
|
"moduleResolution": "node",
|
|
"lib": ["es2018", "dom"],
|
|
"typeRoots": ["node_modules/@types"],
|
|
"outDir": "types",
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"importHelpers": true,
|
|
"noImplicitAny": false,
|
|
"preserveConstEnums": true,
|
|
"removeComments": false,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": false,
|
|
"strictNullChecks": true,
|
|
"allowJs": true
|
|
},
|
|
"formatCodeOptions": { "indentSize": 2, "tabSize": 2 },
|
|
"include": ["src/*", "src/***/*"],
|
|
"typedocOptions": {
|
|
"excludePrivate": true,
|
|
"excludeExternals": true,
|
|
"excludeProtected": true,
|
|
"excludeInternal": true,
|
|
"disableSources": true,
|
|
"gitRevision": "main",
|
|
"hideGenerator": "true",
|
|
"readme": "none",
|
|
"out": "typedoc",
|
|
"entryPoints": "src/human.ts",
|
|
"logLevel": "Info",
|
|
"logger": "none",
|
|
"theme": "wiki/theme/"
|
|
}
|
|
}
|