0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-16 21:56:25 -05:00
verdaccio/packages/ui-components/tsconfig.build.json
Juan Picado 0dafa98263
fix: undefined field on missing count (#3743)
* fix: undefined field on missing count

* types
2023-04-18 00:52:45 +02:00

22 lines
613 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"],
"types": ["node", "jest", "@testing-library/jest-dom"],
"typedocOptions": {
"categoryOrder": ["Model", "Component", "Provider", "*"],
"defaultCategory": "Component",
"categorizeByGroup": "false"
}
}