28 lines
659 B
JSON
28 lines
659 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "es2020",
|
|
"target": "es2018",
|
|
"moduleResolution": "node",
|
|
"lib": ["es2018", "dom"],
|
|
"typeRoots": [
|
|
"typings",
|
|
"node_modules/@types"
|
|
],
|
|
"outFile": "dist/face-api.d.ts",
|
|
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"importHelpers": true,
|
|
"preserveConstEnums": true,
|
|
"removeComments": false,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": false,
|
|
"strictNullChecks": true,
|
|
},
|
|
"formatCodeOptions": { "indentSize": 2, "tabSize": 2 },
|
|
"include": ["src"],
|
|
}
|