0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-16 21:56:25 -05:00
verdaccio/packages/server/tsconfig.json

51 lines
741 B
JSON
Raw Normal View History

2020-03-03 17:59:19 -05:00
{
"extends": "../../tsconfig.reference.json",
2020-03-03 17:59:19 -05:00
"compilerOptions": {
"rootDir": "./src",
"outDir": "./build"
2020-03-03 17:59:19 -05:00
},
"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"
}
]
2020-03-03 17:59:19 -05:00
}