Skip to content

Commit

Permalink
Merge pull request #528 from GridPlus/dev
Browse files Browse the repository at this point in the history
  • Loading branch information
netbonus authored Feb 14, 2023
2 parents d007ebb + 97860ef commit ba75842
Show file tree
Hide file tree
Showing 84 changed files with 9,323 additions and 2,474 deletions.
17 changes: 2 additions & 15 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,6 @@
"no-console": ["off"],
"quotes": ["error", "single"],
"react/react-in-jsx-scope": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/member-delimiter-style": [
"warn",
{
"multiline": {
"delimiter": "semi",
"requireLast": true
},
"singleline": {
"delimiter": "comma",
"requireLast": false
}
}
]
}
"@typescript-eslint/no-explicit-any": "off"
}
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ dist
node_modules
coverage
.env
*.temp
~/node_modules
24 changes: 24 additions & 0 deletions example/.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?
22 changes: 22 additions & 0 deletions example/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React + TS</title>

</head>

<body>
<script type="module">
import { Buffer } from "buffer";
window.Buffer = Buffer;
window.global = window
</script>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>

</html>
Loading

0 comments on commit ba75842

Please sign in to comment.