0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-01-06 22:40:26 -05:00
verdaccio/packages/plugins/ui-theme/tsconfig.json
Juan Picado 3d158a195a
chore(website): plugin search ui (#3539)
* chore: plugin search ui

chore: progress

chore: format code

chore: progress

chore: @verdaccio-ui/copy-clipboard

chore: search finish

* chore: ui-components

* Update ToolList.tsx

* xss protection

* Update static-data.yml

* Update AddonCard.tsx
2022-12-25 18:48:18 +01:00

28 lines
696 B
JSON

{
"extends": "../../../tsconfig.reference.json",
"compilerOptions": {
"skipLibCheck": true,
"module": "esnext",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"jsx": "react",
"allowJs": true,
"sourceMap": 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"
},
{
"path": "../../ui-components"
}
]
}