mirror of https://github.com/vladmandic/human
55 lines
1.5 KiB
JSON
55 lines
1.5 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"noEmitOnError": false,
|
|
"module": "es2020",
|
|
"target": "es2018",
|
|
"moduleResolution": "node",
|
|
"typeRoots": ["node_modules/@types"],
|
|
"outDir": "types",
|
|
"declaration": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"emitDeclarationOnly": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"importHelpers": true,
|
|
"preserveConstEnums": true,
|
|
"removeComments": false,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"allowJs": true,
|
|
"baseUrl": "./",
|
|
"paths": { "tslib": ["node_modules/tslib/tslib.d.ts"] },
|
|
"strictNullChecks": true,
|
|
"noImplicitAny": false,
|
|
"noUnusedLocals": false,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"alwaysStrict": true,
|
|
"noUnusedParameters": true,
|
|
"pretty": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"allowUnreachableCode": false
|
|
},
|
|
"formatCodeOptions": { "indentSize": 2, "tabSize": 2 },
|
|
"exclude": ["node_modules/", "types/", "tfjs/", "dist/"],
|
|
"include": ["src"],
|
|
"typedocOptions": {
|
|
"excludePrivate": true,
|
|
"excludeExternals": true,
|
|
"excludeProtected": true,
|
|
"excludeInternal": true,
|
|
"disableSources": true,
|
|
"gitRevision": "main",
|
|
"hideGenerator": "true",
|
|
"readme": "none",
|
|
"out": "typedoc",
|
|
"entryPoints": ["src/human.ts"],
|
|
"exclude": [],
|
|
"externalPattern": ["node_modules/", "tfjs/"],
|
|
"logLevel": "Verbose",
|
|
"logger": "none",
|
|
"theme": "wiki/theme/"
|
|
}
|
|
}
|