0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-30 22:34:10 -05:00
verdaccio/packages/verdaccio/tsconfig.json
Juan Picado e93d6a30a4
chore: vitest migration part 5 (#4914)
* migrate web package to vitest

* migrate node-api to vitest

* migrate file-locking vitest

* migrate cli

* remove jest from npm packages

* Create weak-cherries-serve.md

* update ci
2024-10-20 19:26:36 +02:00

41 lines
627 B
JSON

{
"extends": "../../tsconfig.reference.json",
"compilerOptions": {
"rootDir": "./src",
"outDir": "./build"
},
"include": ["src/**/*"],
"exclude": ["src/**/*.test.ts"],
"references": [
{
"path": "../auth"
},
{
"path": "../cli"
},
{
"path": "../plugins/htpasswd"
},
{
"path": "../hooks"
},
{
"path": "../logger/logger"
},
{
"path": "../node-api"
},
{
"path": "../plugins/audit"
},
{
"path": "../plugins/ui-theme"
},
{
"path": "../store"
},
{
"path": "../utils"
}
]
}