mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-16 21:56:25 -05:00
aa763baec1
Add two different settings for compile and develop. https://www.typescriptlang.org/docs/handbook/project-references.html
26 lines
402 B
JSON
26 lines
402 B
JSON
{
|
|
"extends": "../../tsconfig.reference.json",
|
|
"compilerOptions": {
|
|
"rootDir": "./src",
|
|
"outDir": "./build"
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["src/**/*.test.ts"],
|
|
"references": [
|
|
{
|
|
"path": "../commons"
|
|
},
|
|
{
|
|
"path": "../logger"
|
|
},
|
|
{
|
|
"path": "../server"
|
|
},
|
|
{
|
|
"path": "../mock"
|
|
},
|
|
{
|
|
"path": "../utils"
|
|
}
|
|
]
|
|
}
|