diff --git a/src/frontend/tsconfig.json b/src/frontend/tsconfig.json
index 66ee59f81c..c86a970695 100644
--- a/src/frontend/tsconfig.json
+++ b/src/frontend/tsconfig.json
@@ -20,7 +20,7 @@
"jsx": "react",
"baseUrl": ".",
"paths": {
- "@/*": ["src/*"]
+ "@/*": ["src/*"],
},
"noImplicitAny": false, //FIXME: Change This "true" to "false" To Integrate Types Instead Of "Any" Types.
"strictNullChecks": true,
@@ -31,14 +31,14 @@
"strictPropertyInitialization": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
- "types": ["@testing-library/jest-dom"]
+ "types": ["@testing-library/jest-dom"],
},
"include": [
// ".eslintrc.cjs",
// ".eslintrc.js",
"src",
"src/**/*.ts",
- "tests"
+ "tests",
],
- "exclude": ["node_modules", "dist"]
+ "exclude": ["node_modules", "dist"],
}