Skip to content

Commit

Permalink
Migrate from webpack to vite (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
anjula-sack authored Aug 13, 2023
1 parent 5b9b735 commit 0b6ac13
Show file tree
Hide file tree
Showing 32 changed files with 4,221 additions and 4,469 deletions.
354 changes: 0 additions & 354 deletions .eslintrc

This file was deleted.

24 changes: 24 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"standard-with-typescript",
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"plugins": ["@typescript-eslint", "prettier", "react"],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module",
"project": "./tsconfig.json"
},
"rules": {},
"settings": {
"react": {
"version": "detect"
}
}
}
3 changes: 1 addition & 2 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
{
"singleQuote": true,
"parser": "flow"
"singleQuote": true
}
Loading

0 comments on commit 0b6ac13

Please sign in to comment.