Add an import alias for shorter filepath imports

This commit is contained in:
Oliver Akins 2022-03-07 22:21:30 -06:00
parent 1f86b68e4c
commit e434aea6ac
No known key found for this signature in database
GPG key ID: 3C2014AF9457AF99
3 changed files with 10 additions and 2 deletions

View file

@ -7,7 +7,7 @@
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "node dist/main.js"
},
},
"author": "Oliver Akins",
"license": "UNLICENSED",
"dependencies": {
@ -21,5 +21,8 @@
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/uuid": "^8.3.4"
},
"_moduleAliases": {
"@": "./dist"
}
}