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": [
|
|
|
|
"typings",
|
|
|
|
"node_modules/@types"
|
|
|
|
],
|
2020-12-19 17:46:41 +01:00
|
|
|
"outFile": "dist/face-api.d.ts",
|
2020-09-08 18:45:03 +02:00
|
|
|
|
2020-12-19 17:46:41 +01:00
|
|
|
"declaration": true,
|
|
|
|
"emitDeclarationOnly": 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-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,
|
|
|
|
"strictNullChecks": true,
|
2020-08-18 13:54:53 +02:00
|
|
|
},
|
2020-08-21 15:01:04 +02:00
|
|
|
"formatCodeOptions": { "indentSize": 2, "tabSize": 2 },
|
2020-09-08 18:45:03 +02:00
|
|
|
"include": ["src"],
|
|
|
|
}
|