imgcook / datacook

Machine Learning and Data Analysis in JavaScript.
https://imgcook.github.io/datacook
Apache License 2.0
44 stars 7 forks source link

Add alias config for path #16

Open risenW opened 3 years ago

risenW commented 3 years ago
import Image from "../../src/image/image-proc";
import {stdCalc} from "../../src/image/utils";
import Image from "../../../src/image/image-proc";
import {stdCalc} from "../../../src/image/utils";

This relative path looks too long, shall we have an alias config for the directory "../../../src" as "@/image/utils"?

Suggestion: Usen the package module-alias

yorkie commented 3 years ago

The "@/image/utils" conflicts with NPM scoped package, may we have another choose just like ~?