Skip to content

Commit

Permalink
fix: repo management
Browse files Browse the repository at this point in the history
  • Loading branch information
yg-lim committed Aug 9, 2024
1 parent 15d531f commit 508476d
Show file tree
Hide file tree
Showing 85 changed files with 28,891 additions and 575 deletions.
18 changes: 18 additions & 0 deletions ui/.eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
module.exports = {
root: true,
env: { browser: true, es2020: true },
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:react-hooks/recommended',
],
ignorePatterns: ['dist', '.eslintrc.cjs'],
parser: '@typescript-eslint/parser',
plugins: ['react-refresh'],
rules: {
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true },
],
},
}
24 changes: 24 additions & 0 deletions ui/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
25 changes: 25 additions & 0 deletions ui/.vite/deps/_metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"hash": "50329443",
"configHash": "f9fd87d4",
"lockfileHash": "2e634e55",
"browserHash": "bf9553d0",
"optimized": {
"react": {
"src": "../../node_modules/react/index.js",
"file": "react.js",
"fileHash": "1176a144",
"needsInterop": true
},
"react-dom/client": {
"src": "../../node_modules/react-dom/client.js",
"file": "react-dom_client.js",
"fileHash": "a31fa30c",
"needsInterop": true
}
},
"chunks": {
"chunk-GFWMZNU4": {
"file": "chunk-GFWMZNU4.js"
}
}
}
Loading

0 comments on commit 508476d

Please sign in to comment.