mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
5fed1955a9
* trying rematch refactor: rematch for store packages migrate login to rematch Update packages/plugins/ui-theme/src/store/store.ts Co-authored-by: Sergio Moreno <sergiomorenoalbert@gmail.com> hide temporary fix test for login migrate package download resource fix tests * add missing fixture * migrate detail page support * fix tests * migrate search * migrate search * clean up tests * remove tags * fix lint * add changeset * fix: search model typings * add type * types * apply suggestions Co-authored-by: Sergio Moreno <22656541+semoal@users.noreply.github.com>
28 lines
698 B
JSON
28 lines
698 B
JSON
{
|
|
"extends": "../../../tsconfig.reference.json",
|
|
"compilerOptions": {
|
|
"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/design-tokens/*": ["src/design-tokens/*"],
|
|
"verdaccio-ui/utils/*": ["src/utils/*"]
|
|
}
|
|
},
|
|
"include": ["src", "types/*.d.ts", "src/i18n/**/*.json", "jest/unit/components"],
|
|
"references": [
|
|
{
|
|
"path": "../../node-api"
|
|
}
|
|
]
|
|
}
|