Skip to content

Commit 8d8bc3b

Browse files
fredshemaJacquelineTuyisenge
authored andcommitted
ch: add redirect handler (#508)
fix: linting errors fix: fallback handler
1 parent 266d7ed commit 8d8bc3b

File tree

9 files changed

+3701
-6911
lines changed

9 files changed

+3701
-6911
lines changed

.eslintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"sourceType": "module"
2020
},
2121
"plugins": ["react", "@typescript-eslint"],
22-
"ignorePatterns": ["/root/webpack.config.js"],
22+
"ignorePatterns": ["/root/vite.config.ts"],
2323
"rules": {
2424
"no-console": ["error"],
2525
"import/extensions": "off",

index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
</head>
4949
<body class="dark:bg-dark-frame-bg">
5050
<div id="tree"></div>
51+
<script type="module" src="/src/index.tsx"></script>
5152
</body>
5253
</html>
5354
<!DOCTYPE html>

jest.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* eslint-disable no-dupe-keys */
22
/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
3-
module.exports = {
3+
export default {
44
preset: 'ts-jest',
55
testEnvironment: 'jsdom',
66
verbose: true,

0 commit comments

Comments
 (0)