small modifications
This commit is contained in:
parent
e08480bb18
commit
6468f94c61
@ -1,7 +1,9 @@
|
||||
import { ReportHandler } from 'web-vitals';
|
||||
|
||||
const reportWebVitals = (onPerfEntry?: ReportHandler) => {
|
||||
if (onPerfEntry && onPerfEntry instanceof Function) {
|
||||
export default function reportWebVitals(onPerfEntry?: ReportHandler) {
|
||||
if (!onPerfEntry)
|
||||
return;
|
||||
|
||||
import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => {
|
||||
getCLS(onPerfEntry);
|
||||
getFID(onPerfEntry);
|
||||
@ -10,6 +12,3 @@ const reportWebVitals = (onPerfEntry?: ReportHandler) => {
|
||||
getTTFB(onPerfEntry);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
export default reportWebVitals;
|
||||
|
@ -1,5 +1 @@
|
||||
// jest-dom adds custom jest matchers for asserting on DOM nodes.
|
||||
// allows you to do things like:
|
||||
// expect(element).toHaveTextContent(/react/i)
|
||||
// learn more: https://github.com/testing-library/jest-dom
|
||||
import '@testing-library/jest-dom';
|
||||
|
@ -21,7 +21,7 @@
|
||||
"sourceMap": true,
|
||||
"declaration": true,
|
||||
"noUnusedLocals": true,
|
||||
"noUnusedParameters": true,
|
||||
// "noUnusedParameters": true,
|
||||
"noFallthroughCasesInSwitch": true,
|
||||
"incremental": true
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user