mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
be2f6129bb
* feat: clipanion as cli * chore: add version command * chore: update ts
29 lines
583 B
JSON
29 lines
583 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "commonjs",
|
|
"declaration": true,
|
|
"noImplicitAny": false,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"resolveJsonModule": true,
|
|
"outDir": "lib",
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"typeRoots": [
|
|
"./node_modules/@verdaccio/types/lib/verdaccio",
|
|
"./node_modules/@types",
|
|
"./types/custom.d.ts"
|
|
]
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/*.spec.ts"
|
|
],
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"test/**/*.ts",
|
|
"types/*.d.ts"
|
|
]
|
|
}
|