1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-08 23:25:51 +01:00
verdaccio/packages/auth/tsconfig.json
Juan Picado ddb6a22396
feat: signature package (#3653)
* feat: signature package

* feat: signature package
2023-02-26 13:19:22 +01:00

33 lines
495 B
JSON

{
"extends": "../../tsconfig.reference",
"compilerOptions": {
"rootDir": "./src",
"outDir": "./build",
"noImplicitAny": true
},
"include": ["src/**/*.ts"],
"references": [
{
"path": "../config"
},
{
"path": "../plugins/htpasswd"
},
{
"path": "../core/core"
},
{
"path": "../loaders"
},
{
"path": "../signature"
},
{
"path": "../logger/logger"
},
{
"path": "../utils"
}
]
}