0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-16 21:56:25 -05:00
verdaccio/packages/plugins/ui-theme/tsconfig.json
2021-11-08 17:24:15 +01:00

25 lines
647 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"
}
]
}