forked from imbytecat/fullstack-starter
- 添加开发依赖 @furtherverse/tsconfig 和 typescript 到 utils 包中 - 配置模块导入别名并添加类型检查依赖项 - 添加工具函数库的初始化文件
14 lines
239 B
JSON
14 lines
239 B
JSON
{
|
|
"name": "@furtherverse/utils",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"imports": {
|
|
"#*": "./src/*"
|
|
},
|
|
"devDependencies": {
|
|
"@furtherverse/tsconfig": "workspace:*",
|
|
"typescript": "catalog:"
|
|
}
|
|
}
|