face-api/tsconfig.json

55 lines
1.5 KiB
JSON
Raw Normal View History

2020-08-18 13:54:53 +02:00
{
"compilerOptions": {
2020-10-13 22:57:06 +02:00
"module": "es2020",
2021-09-10 16:24:33 +02:00
"target": "es2020",
"lib": ["esnext", "dom", "webworker"],
2020-09-08 18:45:03 +02:00
"moduleResolution": "node",
2021-09-10 16:24:33 +02:00
"typeRoots": ["node_modules/@types"],
2020-12-23 17:26:55 +01:00
"outDir": "types",
2021-09-10 16:24:33 +02:00
"allowJs": false,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"alwaysStrict": true,
2020-12-19 17:46:41 +01:00
"declaration": true,
2020-10-15 12:48:39 +02:00
"emitDecoratorMetadata": true,
2020-10-13 22:57:06 +02:00
"experimentalDecorators": true,
"importHelpers": true,
2021-09-10 16:24:33 +02:00
"noFallthroughCasesInSwitch": true,
2024-01-16 18:09:52 +01:00
"noImplicitAny": true,
2021-09-10 16:24:33 +02:00
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noPropertyAccessFromIndexSignature": false,
"noUncheckedIndexedAccess": false,
"noUnusedLocals": false,
"noUnusedParameters": true,
2020-12-19 17:46:41 +01:00
"preserveConstEnums": true,
"removeComments": false,
2020-10-13 22:57:06 +02:00
"resolveJsonModule": true,
2020-12-19 17:46:41 +01:00
"skipLibCheck": true,
2021-12-03 17:32:42 +01:00
"strict": true,
2020-12-19 17:46:41 +01:00
"sourceMap": false,
2021-09-08 19:51:28 +02:00
"strictBindCallApply": true,
"strictFunctionTypes": true,
2021-09-10 16:24:33 +02:00
"strictNullChecks": true,
2024-01-16 18:09:52 +01:00
"strictPropertyInitialization": true
2020-08-18 13:54:53 +02:00
},
"formatCodeOptions": { "indentSize": 2, "tabSize": 2 },
2020-09-08 18:45:03 +02:00
"include": ["src"],
2022-10-18 13:10:36 +02:00
"exclude": ["node_modules/**"],
2021-03-14 13:47:38 +01:00
"typedocOptions": {
"excludePrivate": true,
"excludeExternals": true,
"excludeProtected": true,
"excludeInternal": true,
"disableSources": false,
"gitRevision": "main",
"hideGenerator": "true",
"theme": "default",
"readme": "none",
"out": "typedoc",
2021-08-10 14:19:49 +02:00
"logLevel": "Verbose",
2024-01-16 18:09:52 +01:00
"logger": "none"
2021-03-14 13:47:38 +01:00
}
2020-09-08 18:45:03 +02:00
}