1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-13 03:35:52 +01:00
verdaccio/packages/plugins/ui-theme/tsconfig.json
Juan Picado e9e4552658 feat: ui theme on 5.x (#2033)
* refactor: relocate theme-ui as plugin

* refactor: relocate theme-ui as plugin

* refactor: relocate theme-ui as plugin

* chore: fix lint

* chore: add missing folder

* refactor: relocate theme-ui as plugin

* refactor: relocate theme-ui as plugin

* refactor: relocate theme-ui as plugin

* chore: update scripts

* refactor: relocate theme-ui as plugin

* refactor: relocate theme-ui as plugin

* refactor: relocate theme-ui as plugin

* refactor: relocate theme-ui as plugin
2021-04-09 17:54:29 +02:00

31 lines
722 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", "i18n/**/*.json"],
"references": [
{
"path": "../../node-api"
},
{
"path": "../../core/commons-api"
}
]
}