human/tsconfig.json

60 lines
1.7 KiB
JSON
Raw Normal View History

2020-12-27 14:12:22 +01:00
{
"compilerOptions": {
2022-11-12 18:54:58 +01: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"] },
2022-04-14 17:47:08 +02:00
"lib": ["esnext", "dom"],
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-11-17 21:45:49 +01:00
"declarationMap": true,
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,
"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,
2021-12-27 16:59:56 +01:00
"noUnusedLocals": true,
2021-08-17 14:51:17 +02:00
"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
},
2022-09-30 16:20:08 +02:00
"exclude": ["node_modules/", "types/", "dist/**/*.js"],
"include": ["src", "tfjs/*.ts", "types/human.d.ts", "test/**/*.ts"],
2021-03-14 04:31:09 +01:00
"typedocOptions": {
2022-10-17 02:28:57 +02:00
"excludeExternals": true,
"externalPattern": ["**/node_modules/**", "tfjs/", "demo/"]
2021-03-14 04:31:09 +01:00
}
2020-12-27 14:12:22 +01:00
}