mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-30 22:34:10 -05:00
0a0b772f52
* chore: export types to the module * chore: remove unused dep * chore: format * Update package.json
17 lines
427 B
JSON
17 lines
427 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "commonjs",
|
|
"declaration": true,
|
|
"noImplicitAny": false,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"resolveJsonModule": true,
|
|
"rootDir": "./src",
|
|
"outDir": "./build",
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true
|
|
},
|
|
"exclude": ["node_modules", "**/*.spec.ts"],
|
|
"include": ["src/**/*.ts", "types/*.d.ts"]
|
|
}
|