human/tsconfig.json

60 lines
1.7 KiB
JSON
Raw Normal View History

2020-12-27 14:12:22 +01:00
{
"compilerOptions": {
2021-09-13 19:29:14 +02:00
"module": "esnext",
"target": "esnext",
2020-12-27 14:12:22 +01:00
"moduleResolution": "node",
2021-03-17 23:57:00 +01:00
"outDir": "types",
2021-08-17 14:51:17 +02:00
"baseUrl": "./",
2021-10-22 19:49:40 +02:00
"paths": { "tslib": ["./node_modules/tslib/tslib.d.ts"] },
"lib": ["esnext", "dom", "webworker"],
2021-08-17 14:51:17 +02:00
"allowJs": true,
2021-09-13 19:29:14 +02:00
"allowSyntheticDefaultImports": false,
2021-08-17 14:51:17 +02:00
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"alwaysStrict": true,
2021-09-13 19:29:14 +02:00
"declaration": true,
2021-10-30 18:21:54 +02:00
"declarationMap": false,
2020-12-27 14:12:22 +01:00
"emitDecoratorMetadata": true,
"esModuleInterop": false,
2021-09-13 19:29:14 +02:00
"exactOptionalPropertyTypes": true,
2020-12-27 14:12:22 +01:00
"experimentalDecorators": true,
2021-09-13 19:29:14 +02:00
"forceConsistentCasingInFileNames": true,
2020-12-27 14:12:22 +01:00
"importHelpers": true,
2021-09-13 19:29:14 +02:00
"importsNotUsedAsValues": "error",
"isolatedModules": false,
2021-09-13 19:29:14 +02:00
"noEmitHelpers": true,
"noEmitOnError": false,
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,
2021-11-14 17:22:52 +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-09-13 19:29:14 +02:00
"strictPropertyInitialization": true,
"stripInternal": false,
"useDefineForClassFields": true,
"useUnknownInCatchVariables": true
2021-08-17 14:51:17 +02:00
},
"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/"],
2021-10-26 21:08:05 +02:00
"include": ["src", "types/human.d.ts"],
2021-03-14 04:31:09 +01:00
"typedocOptions": {
2021-09-13 19:29:14 +02:00
"externalPattern": ["node_modules/", "tfjs/"]
2021-03-14 04:31:09 +01:00
}
2020-12-27 14:12:22 +01:00
}