0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-23 22:27:34 -05:00
verdaccio/packages/server/express/tsconfig.json

51 lines
783 B
JSON
Raw Normal View History

{
"extends": "../../../tsconfig.reference.json",
"compilerOptions": {
"rootDir": "./src",
"outDir": "./build"
},
"include": ["src/**/*", "types/*.d.ts"],
"exclude": ["src/**/*.test.ts"],
"references": [
{
"path": "../../api"
},
{
"path": "../../auth"
},
{
"path": "../../config"
},
{
"path": "../../core/commons-api"
},
{
"path": "../../loaders"
},
{
"path": "../../logger"
},
{
"path": "../../middleware"
},
{
"path": "../../mock"
},
{
"path": "../../plugins/audit"
},
{
"path": "../../proxy"
},
{
"path": "../../store"
},
{
"path": "../../utils"
},
{
"path": "../../web"
}
]
}