1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-13 03:35:52 +01:00
verdaccio/packages/core/server/tsconfig.json
Juan Picado 30875acc70
feat: partially implement user endpoints with fastify (part1) (#2301)
Partially implemented (wip)

- requires follow up for proper token validation
-  no test included (still experimental)
-  types refactoring required, still need alignment with other modules
2021-10-26 22:03:06 +02:00

30 lines
463 B
JSON

{
"extends": "../../../tsconfig.reference.json",
"compilerOptions": {
"rootDir": "./src",
"outDir": "./build"
},
"include": ["src/**/*"],
"exclude": ["src/**/*.test.ts"],
"references": [
{
"path": "../../store"
},
{
"path": "../../config"
},
{
"path": "../../auth"
},
{
"path": "../../logger"
},
{
"path": "../../utils"
},
{
"path": "../../core/core"
}
]
}