Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
ApplicationTrackHitCount
  • Loading branch information
NithinU2802 committed May 6, 2023
commit 0eefb70c891cb80441e4104e7b722f1a4f9145e1
35 changes: 35 additions & 0 deletions Task/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
module.exports = {
parser: "@babel/eslint-parser",
env: {
browser: true,
commonjs: true,
es6: true,
node: true,
jest: true,
},
parserOptions: {
ecmaVersion: 2020,
ecmaFeatures: {
impliedStrict: true,
jsx: true,
},
sourceType: "module",
},
plugins: ["react", "react-hooks"],
extends: [
"eslint:recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
],
settings: {
react: {
version: "detect",
},
},
rules: {
"react/prop-types": "off",
"react/react-in-jsx-scope": "off",

// You can do more rule customizations here...
},
};
6 changes: 6 additions & 0 deletions Task/babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module.exports = {
presets: [
"@babel/preset-env",
["@babel/preset-react", { "runtime": "automatic" }]
],
};
210 changes: 210 additions & 0 deletions Task/dist/main.js

Large diffs are not rendered by default.

Loading