2019-07-16 01:40:01 -05:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "esnext",
|
|
|
|
"module": "commonjs",
|
|
|
|
"declaration": true,
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"strict": true,
|
|
|
|
"strictNullChecks": true,
|
2019-09-26 11:22:14 -05:00
|
|
|
"resolveJsonModule": true,
|
2019-07-16 01:40:01 -05:00
|
|
|
"outDir": "lib",
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"typeRoots": [
|
|
|
|
"./node_modules/@verdaccio/types/lib/verdaccio",
|
|
|
|
"./node_modules/@types",
|
|
|
|
"./types/custom.d.ts"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"exclude": [
|
2021-04-03 06:13:31 -05:00
|
|
|
"node_modules",
|
|
|
|
"**/*.spec.ts"
|
2019-07-16 01:40:01 -05:00
|
|
|
],
|
|
|
|
"include": [
|
2019-07-20 11:05:51 -05:00
|
|
|
"src/**/*.ts",
|
2019-08-16 14:20:18 -05:00
|
|
|
"test/**/*.ts",
|
2019-07-16 01:40:01 -05:00
|
|
|
"types/*.d.ts"
|
|
|
|
]
|
|
|
|
}
|