face-api/tsconfig.json

45 lines
1.1 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",
"target": "es2018",
2020-09-08 18:45:03 +02:00
"moduleResolution": "node",
2020-10-13 22:57:06 +02:00
"lib": ["es2018", "dom"],
"typeRoots": [
"node_modules/@types"
],
2020-12-23 17:26:55 +01:00
"outDir": "types",
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,
2020-12-23 18:58:47 +01:00
"noImplicitAny": false,
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,
"sourceMap": false,
2021-09-08 19:51:28 +02:00
"strictNullChecks": true,
"allowJs": false,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"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"],
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",
"entryPoints": "src/index.ts",
2021-08-10 14:19:49 +02:00
"logLevel": "Verbose",
"logger": "none",
2021-03-14 13:47:38 +01:00
}
2020-09-08 18:45:03 +02:00
}