mirror of
https://github.com/zhigang1992/react-content-loader.git
synced 2026-01-12 22:50:00 +08:00
* feat(api): updates background and foreground BREAKING CHANGE: Rename `primaryColor` to `backgroundColor` and `secondaryColor` to `foregroundColor`. * feat(api): updates uniqueKey BREAKING CHANGE: Renamed prop key `uniquekey` to `uniqueKey` * fix(svg): removes unnecessary keys * fix(web svg): adds display name * feat(a11y): improves attrs BREAKING CHANGE: Shift `ariaLabel` to `title` prop, the value remains * refactor(codebase): reestructure * test(web native): updates with new structure * test(native): sets animate false on tests * fix(svg): removes viewBox, width and height from api * fix(presets): updates to new api and some design updates * feat(content loader): sets new default as facebook instead of a box * docs(readme storybook): updates to new api * test(web native): updates
19 lines
420 B
JSON
19 lines
420 B
JSON
{
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"declarationDir": "./dist/types",
|
|
"declarationMap": true,
|
|
"esModuleInterop": true,
|
|
"jsx": "react",
|
|
"lib": ["es6"],
|
|
"noEmit": true,
|
|
"noImplicitAny": false,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"target": "es5"
|
|
},
|
|
"include": ["./src/**/*"],
|
|
"exclude": ["node_modules", "src/web/__tests__"]
|
|
}
|