2019-07-16 08:40:01 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "esnext",
|
|
|
|
"module": "commonjs",
|
|
|
|
"declaration": true,
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"strict": true,
|
|
|
|
"strictNullChecks": true,
|
2019-09-26 18:22:14 +02:00
|
|
|
"resolveJsonModule": true,
|
2019-07-16 08:40:01 +02: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 13:13:31 +02:00
|
|
|
"node_modules",
|
|
|
|
"**/*.spec.ts"
|
2019-07-16 08:40:01 +02:00
|
|
|
],
|
|
|
|
"include": [
|
2019-07-20 18:05:51 +02:00
|
|
|
"src/**/*.ts",
|
2019-08-16 21:20:18 +02:00
|
|
|
"test/**/*.ts",
|
2019-07-16 08:40:01 +02:00
|
|
|
"types/*.d.ts"
|
|
|
|
]
|
|
|
|
}
|