2020-12-27 14:12:22 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "es2020",
|
|
|
|
"target": "es2018",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"lib": ["es2018", "dom"],
|
|
|
|
"typeRoots": ["node_modules/@types"],
|
2021-03-17 23:57:00 +01:00
|
|
|
"outDir": "types",
|
2020-12-27 14:12:22 +01:00
|
|
|
"declaration": true,
|
|
|
|
"emitDeclarationOnly": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"importHelpers": true,
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"preserveConstEnums": true,
|
|
|
|
"removeComments": false,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"sourceMap": false,
|
2021-02-08 18:47:38 +01:00
|
|
|
"strictNullChecks": true,
|
2020-12-27 14:12:22 +01:00
|
|
|
"allowJs": true
|
|
|
|
},
|
|
|
|
"formatCodeOptions": { "indentSize": 2, "tabSize": 2 },
|
2021-02-08 18:47:38 +01:00
|
|
|
"include": ["src/*", "src/***/*", "demo/*"],
|
2021-03-14 04:31:09 +01:00
|
|
|
"typedocOptions": {
|
|
|
|
"excludePrivate": true,
|
|
|
|
"excludeExternals": true,
|
|
|
|
"excludeProtected": true,
|
|
|
|
"excludeInternal": true,
|
|
|
|
"disableSources": true,
|
|
|
|
"gitRevision": "main",
|
|
|
|
"hideGenerator": "true",
|
|
|
|
"readme": "none",
|
|
|
|
"out": "typedoc",
|
|
|
|
"entryPoints": "src/human.ts",
|
2021-03-15 17:29:51 +01:00
|
|
|
"logLevel": "Info",
|
2021-03-15 17:14:48 +01:00
|
|
|
"logger": "none",
|
|
|
|
"theme": "wiki/theme/"
|
2021-03-14 04:31:09 +01:00
|
|
|
}
|
2020-12-27 14:12:22 +01:00
|
|
|
}
|