mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
24 lines
599 B
JSON
24 lines
599 B
JSON
{
|
|
"extends": "../../../tsconfig.base",
|
|
"compilerOptions": {
|
|
"outDir": "./build",
|
|
"skipLibCheck": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"jsx": "react",
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"checkJs": false,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"verdaccio-ui/components/*": ["src/components/*"],
|
|
"verdaccio-ui/utils/*": ["src/utils/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*.ts", "types/*.d.ts", "i18n/**/*.json"],
|
|
"exclude": ["src/**/*.test.ts"]
|
|
}
|