add type defs when working with relative path imports

pull/356/head
Vladimir Mandic 2021-11-08 16:36:20 -05:00
parent 50eff29056
commit 8a524233b0
3 changed files with 6 additions and 8 deletions

View File

@ -5,7 +5,7 @@
*/
// demo/typescript/index.ts
import Human from "../../dist/human.esm.js";
import { Human } from "../../dist/human.esm.js";
var humanConfig = {
modelBasePath: "../../models",
filter: { equalization: false }

View File

@ -7,9 +7,7 @@
* @license MIT
*/
/// <reference path="../../types/src//human.d.ts" />
import Human from '../../dist/human.esm.js'; // equivalent of @vladmandic/human
import { Human } from '../../dist/human.esm.js'; // equivalent of @vladmandic/Human
const humanConfig = { // user configuration for human, used to fine-tune behavior
modelBasePath: '../../models',

View File

@ -23,7 +23,7 @@
"scripts": {
"start": "node --no-warnings demo/nodejs/node.js",
"dev": "build --profile development",
"build": "rimraf test/build.log && build --profile production && cp src/tfjs/tfjs.esm.d.ts types/dist/",
"build": "rimraf test/build.log && build --profile production && cp src/tfjs/tfjs.esm.d.ts types/dist/ && cp src/human.d.ts dist/human.esm.d.ts",
"test": "node --no-warnings --unhandled-rejections=strict --trace-uncaught test/node.js",
"lint": "eslint src demo test",
"scan": "npx auditjs@latest ossi --dev --quiet"
@ -67,8 +67,8 @@
"@tensorflow/tfjs-node": "^3.11.0",
"@tensorflow/tfjs-node-gpu": "^3.11.0",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"@vladmandic/build": "^0.6.3",
"@vladmandic/pilogger": "^0.3.5",
"canvas": "^2.8.0",
@ -81,7 +81,7 @@
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"node-fetch": "^3.0.0",
"node-fetch": "^3.1.0",
"rimraf": "^3.0.2",
"seedrandom": "^3.0.5",
"tslib": "^2.3.1",