0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-23 22:27:34 -05:00
verdaccio/packages/ui-components/tsconfig.build.json
Juan Picado a1f78368c4
docs: add pages to ui components (#3557)
* rename method

* Update ui-components.md

* clean up jest

* docs: add pages to ui components

* Update ui-components.yml

* chore: add some example docs
2023-01-08 11:27:37 +01:00

21 lines
555 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"module": "ESNext",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"sourceMap": true,
"preserveSymlinks": true,
"rootDir": ".",
"outDir": "./build",
"skipLibCheck": true,
"jsx": "react"
},
"include": ["src/**/*", "./src/types/index.d.ts"],
"typedocOptions": {
"categoryOrder": ["Model", "Component", "Provider", "*"],
"defaultCategory": "Component",
"categorizeByGroup": "false"
}
}