1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-08 23:25:51 +01:00
verdaccio/packages/web/tsconfig.json
Juan Picado 631abe1ac1
refactor logger module (#3592)
* refactor logger module

* Update index.ts
2023-02-05 21:00:32 +01:00

51 lines
773 B
JSON

{
"extends": "../../tsconfig.reference.json",
"compilerOptions": {
"rootDir": "./src",
"outDir": "./build"
},
"include": ["src/**/*", "types/*.d.ts"],
"exclude": ["src/**/*.test.ts"],
"references": [
{
"path": "../auth"
},
{
"path": "../config"
},
{
"path": "../core/tarball"
},
{
"path": "../core/url"
},
{
"path": "../loaders"
},
{
"path": "../api"
},
{
"path": "../logger/logger"
},
{
"path": "../middleware"
},
{
"path": "../plugins/auth-memory"
},
{
"path": "../plugins/memory"
},
{
"path": "../store"
},
{
"path": "../tools/helpers"
},
{
"path": "../utils"
}
]
}