0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-01-13 22:48:31 -05:00
verdaccio/packages/auth/tsconfig.json

33 lines
495 B
JSON
Raw Normal View History

2020-03-03 23:59:19 +01:00
{
"extends": "../../tsconfig.reference",
2020-03-03 23:59:19 +01:00
"compilerOptions": {
"rootDir": "./src",
"outDir": "./build",
"noImplicitAny": true
2020-03-03 23:59:19 +01:00
},
"include": ["src/**/*.ts"],
"references": [
{
"path": "../config"
},
{
"path": "../plugins/htpasswd"
},
{
"path": "../core/core"
},
{
"path": "../loaders"
},
{
"path": "../signature"
},
{
"path": "../logger/logger"
},
{
"path": "../utils"
}
]
2020-03-03 23:59:19 +01:00
}