mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-16 21:56:25 -05:00
8323ab10c5
* chore(deps): update all linting dependencies * Update tsconfig.json --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Juan Picado <juanpicado19@gmail.com>
18 lines
455 B
JSON
18 lines
455 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "commonjs",
|
|
"declaration": true,
|
|
"noImplicitAny": false,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"rootDir": "./src",
|
|
"outDir": "./build",
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
},
|
|
"exclude": ["node_modules", "**/*.spec.ts"],
|
|
"include": ["src/**/*.ts", "types/*.d.ts"],
|
|
}
|