0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-01-20 22:52:46 -05:00
verdaccio/packages/utils/tsconfig.json

25 lines
455 B
JSON
Raw 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",
2020-03-04 22:36:43 +01:00
"outDir": "./build",
"preserveSymlinks": true,
"composite": true,
"declaration": true,
"declarationMap": true
2020-03-03 23:59:19 +01:00
},
"include": ["src/**/*.ts"],
"exclude": ["src/**/*.test.ts"],
"references": [
{
"path": "../core/commons-api"
},
{
"path": "../logger"
},
{
"path": "../core/commons-api"
}
]
2020-03-03 23:59:19 +01:00
}