human/tsconfig.json

64 lines
1.7 KiB
JSON
Raw Normal View History

2020-12-27 14:12:22 +01:00
{
"compilerOptions": {
"module": "es2020",
"target": "es2018",
"moduleResolution": "node",
"typeRoots": ["node_modules/@types"],
2021-03-17 23:57:00 +01:00
"outDir": "types",
2021-08-17 14:51:17 +02:00
"baseUrl": "./",
"paths": { "tslib": ["node_modules/tslib/tslib.d.ts"] },
"noEmitOnError": false,
2020-12-27 14:12:22 +01:00
"declaration": true,
2021-08-17 14:51:17 +02:00
"allowJs": true,
2021-06-05 23:51:46 +02:00
"allowSyntheticDefaultImports": true,
2021-08-17 14:51:17 +02:00
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"alwaysStrict": true,
2020-12-27 14:12:22 +01:00
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
2021-08-17 14:51:17 +02:00
"noFallthroughCasesInSwitch": true,
"noImplicitAny": false,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noPropertyAccessFromIndexSignature": false,
"noUncheckedIndexedAccess": false,
"noUnusedLocals": false,
"noUnusedParameters": true,
2020-12-27 14:12:22 +01:00
"preserveConstEnums": true,
2021-08-17 14:51:17 +02:00
"pretty": true,
2020-12-27 14:12:22 +01:00
"removeComments": false,
"resolveJsonModule": true,
"skipLibCheck": true,
2021-06-05 23:51:46 +02:00
"sourceMap": true,
2021-08-17 14:51:17 +02:00
"strictBindCallApply": true,
"strictFunctionTypes": true,
2021-06-05 23:51:46 +02:00
"strictNullChecks": true,
2021-08-17 14:51:17 +02:00
"strictPropertyInitialization": true
},
"formatCodeOptions": {
"indentSize": 2,
"tabSize": 2
2020-12-27 14:12:22 +01:00
},
2021-06-07 02:34:29 +02:00
"exclude": ["node_modules/", "types/", "tfjs/", "dist/"],
"include": ["src"],
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",
2021-06-07 01:00:34 +02:00
"entryPoints": ["src/human.ts"],
"exclude": [],
"externalPattern": ["node_modules/", "tfjs/"],
"logLevel": "Verbose",
"logger": "none",
"theme": "wiki/theme/"
2021-03-14 04:31:09 +01:00
}
2020-12-27 14:12:22 +01:00
}