1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-08 23:25:51 +01:00
verdaccio/packages/api/tsconfig.json

42 lines
641 B
JSON
Raw Permalink Normal View History

2020-03-03 23:59:19 +01:00
{
"extends": "../../tsconfig.reference.json",
2020-03-03 23:59:19 +01:00
"compilerOptions": {
"rootDir": "./src",
"outDir": "./build"
},
"include": ["src/**/*.ts", "types/*.d.ts"],
"exclude": ["src/**/*.test.ts"],
"references": [
{
"path": "../auth"
},
{
"path": "../config"
},
{
"path": "../core/core"
},
{
"path": "../core/tarball"
},
{
"path": "../hooks"
},
{
"path": "../logger/logger"
},
{
"path": "../middleware"
},
{
"path": "../server/express"
},
{
"path": "../store"
},
{
"path": "../utils"
}
]
2020-03-03 23:59:19 +01:00
}