test frontend
Browse files- app.py +31 -2
- front/.gitignore +24 -0
- front/README.md +50 -0
- front/eslint.config.js +28 -0
- front/index.html +13 -0
- front/package-lock.json +0 -0
- front/package.json +30 -0
- front/public/vite.svg +1 -0
- front/src/App.css +42 -0
- front/src/App.tsx +48 -0
- front/src/assets/react.svg +1 -0
- front/src/index.css +68 -0
- front/src/main.tsx +14 -0
- front/src/vite-env.d.ts +1 -0
- front/tsconfig.app.json +26 -0
- front/tsconfig.json +7 -0
- front/tsconfig.node.json +24 -0
- front/vite.config.ts +7 -0
app.py
CHANGED
@@ -5,16 +5,25 @@ import os
|
|
5 |
import random
|
6 |
import torch
|
7 |
|
8 |
-
print(os.system(
|
|
|
|
|
|
|
|
|
|
|
9 |
|
10 |
CHAR_LIMIT = 5000 # test
|
11 |
|
|
|
|
|
12 |
CUDA_AVAILABLE = torch.cuda.is_available()
|
13 |
models = {gpu: KModel().to('cuda' if gpu else 'cpu').eval() for gpu in [False] + ([True] if CUDA_AVAILABLE else [])}
|
14 |
pipelines = {lang_code: KPipeline(lang_code=lang_code, model=False) for lang_code in 'ab'}
|
15 |
pipelines['a'].g2p.lexicon.golds['kokoro'] = 'kˈOkəɹO'
|
16 |
pipelines['b'].g2p.lexicon.golds['kokoro'] = 'kˈQkəɹQ'
|
17 |
|
|
|
|
|
18 |
@spaces.GPU(duration=30)
|
19 |
def forward_gpu(ps, ref_s, speed):
|
20 |
return models[True](ps, ref_s, speed)
|
@@ -145,7 +154,27 @@ with gr.Blocks() as stream_tab:
|
|
145 |
|
146 |
API_NAME = 'tts'
|
147 |
|
148 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
149 |
with gr.Row():
|
150 |
with gr.Column():
|
151 |
text = gr.Textbox(label='Input Text', info=f"Up to ~500 characters per Generate, or {'∞' if CHAR_LIMIT is None else CHAR_LIMIT} characters per Stream")
|
|
|
5 |
import random
|
6 |
import torch
|
7 |
|
8 |
+
print(os.system("""
|
9 |
+
cd front;
|
10 |
+
npm ci;
|
11 |
+
npm run build;
|
12 |
+
cd ..;
|
13 |
+
"""))
|
14 |
|
15 |
CHAR_LIMIT = 5000 # test
|
16 |
|
17 |
+
SPACE_ID = os.environ.get('SPACE_ID')
|
18 |
+
|
19 |
CUDA_AVAILABLE = torch.cuda.is_available()
|
20 |
models = {gpu: KModel().to('cuda' if gpu else 'cpu').eval() for gpu in [False] + ([True] if CUDA_AVAILABLE else [])}
|
21 |
pipelines = {lang_code: KPipeline(lang_code=lang_code, model=False) for lang_code in 'ab'}
|
22 |
pipelines['a'].g2p.lexicon.golds['kokoro'] = 'kˈOkəɹO'
|
23 |
pipelines['b'].g2p.lexicon.golds['kokoro'] = 'kˈQkəɹQ'
|
24 |
|
25 |
+
gr.set_static_paths(paths=["./front/dist"])
|
26 |
+
|
27 |
@spaces.GPU(duration=30)
|
28 |
def forward_gpu(ps, ref_s, speed):
|
29 |
return models[True](ps, ref_s, speed)
|
|
|
154 |
|
155 |
API_NAME = 'tts'
|
156 |
|
157 |
+
|
158 |
+
head = f'''
|
159 |
+
<script>
|
160 |
+
window.SPACE_ID = '{SPACE_ID}';
|
161 |
+
if (!localStorage.getItem('debug')) {{
|
162 |
+
document.querySelector('body').classList = [];
|
163 |
+
const rootDiv = document.createElement('div');
|
164 |
+
rootDiv.id = 'root';
|
165 |
+
document.body.appendChild(rootDiv);
|
166 |
+
}}
|
167 |
+
</script>
|
168 |
+
'''
|
169 |
+
|
170 |
+
with open('./front/dist/index.html', 'r') as f:
|
171 |
+
html = f.read()
|
172 |
+
lines = html.split('\n')
|
173 |
+
for i, line in enumerate(lines):
|
174 |
+
if '<script' in line or 'stylesheet' in line:
|
175 |
+
head += '\n'.join(lines[:i])
|
176 |
+
|
177 |
+
with gr.Blocks(head=head) as app:
|
178 |
with gr.Row():
|
179 |
with gr.Column():
|
180 |
text = gr.Textbox(label='Input Text', info=f"Up to ~500 characters per Generate, or {'∞' if CHAR_LIMIT is None else CHAR_LIMIT} characters per Stream")
|
front/.gitignore
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Logs
|
2 |
+
logs
|
3 |
+
*.log
|
4 |
+
npm-debug.log*
|
5 |
+
yarn-debug.log*
|
6 |
+
yarn-error.log*
|
7 |
+
pnpm-debug.log*
|
8 |
+
lerna-debug.log*
|
9 |
+
|
10 |
+
node_modules
|
11 |
+
dist
|
12 |
+
dist-ssr
|
13 |
+
*.local
|
14 |
+
|
15 |
+
# Editor directories and files
|
16 |
+
.vscode/*
|
17 |
+
!.vscode/extensions.json
|
18 |
+
.idea
|
19 |
+
.DS_Store
|
20 |
+
*.suo
|
21 |
+
*.ntvs*
|
22 |
+
*.njsproj
|
23 |
+
*.sln
|
24 |
+
*.sw?
|
front/README.md
ADDED
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# React + TypeScript + Vite
|
2 |
+
|
3 |
+
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
|
4 |
+
|
5 |
+
Currently, two official plugins are available:
|
6 |
+
|
7 |
+
- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh
|
8 |
+
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
|
9 |
+
|
10 |
+
## Expanding the ESLint configuration
|
11 |
+
|
12 |
+
If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:
|
13 |
+
|
14 |
+
- Configure the top-level `parserOptions` property like this:
|
15 |
+
|
16 |
+
```js
|
17 |
+
export default tseslint.config({
|
18 |
+
languageOptions: {
|
19 |
+
// other options...
|
20 |
+
parserOptions: {
|
21 |
+
project: ['./tsconfig.node.json', './tsconfig.app.json'],
|
22 |
+
tsconfigRootDir: import.meta.dirname,
|
23 |
+
},
|
24 |
+
},
|
25 |
+
})
|
26 |
+
```
|
27 |
+
|
28 |
+
- Replace `tseslint.configs.recommended` to `tseslint.configs.recommendedTypeChecked` or `tseslint.configs.strictTypeChecked`
|
29 |
+
- Optionally add `...tseslint.configs.stylisticTypeChecked`
|
30 |
+
- Install [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) and update the config:
|
31 |
+
|
32 |
+
```js
|
33 |
+
// eslint.config.js
|
34 |
+
import react from 'eslint-plugin-react'
|
35 |
+
|
36 |
+
export default tseslint.config({
|
37 |
+
// Set the react version
|
38 |
+
settings: { react: { version: '18.3' } },
|
39 |
+
plugins: {
|
40 |
+
// Add the react plugin
|
41 |
+
react,
|
42 |
+
},
|
43 |
+
rules: {
|
44 |
+
// other rules...
|
45 |
+
// Enable its recommended rules
|
46 |
+
...react.configs.recommended.rules,
|
47 |
+
...react.configs['jsx-runtime'].rules,
|
48 |
+
},
|
49 |
+
})
|
50 |
+
```
|
front/eslint.config.js
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import js from '@eslint/js'
|
2 |
+
import globals from 'globals'
|
3 |
+
import reactHooks from 'eslint-plugin-react-hooks'
|
4 |
+
import reactRefresh from 'eslint-plugin-react-refresh'
|
5 |
+
import tseslint from 'typescript-eslint'
|
6 |
+
|
7 |
+
export default tseslint.config(
|
8 |
+
{ ignores: ['dist'] },
|
9 |
+
{
|
10 |
+
extends: [js.configs.recommended, ...tseslint.configs.recommended],
|
11 |
+
files: ['**/*.{ts,tsx}'],
|
12 |
+
languageOptions: {
|
13 |
+
ecmaVersion: 2020,
|
14 |
+
globals: globals.browser,
|
15 |
+
},
|
16 |
+
plugins: {
|
17 |
+
'react-hooks': reactHooks,
|
18 |
+
'react-refresh': reactRefresh,
|
19 |
+
},
|
20 |
+
rules: {
|
21 |
+
...reactHooks.configs.recommended.rules,
|
22 |
+
'react-refresh/only-export-components': [
|
23 |
+
'warn',
|
24 |
+
{ allowConstantExport: true },
|
25 |
+
],
|
26 |
+
},
|
27 |
+
},
|
28 |
+
)
|
front/index.html
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!doctype html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8" />
|
5 |
+
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
6 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
7 |
+
<title>Vite + React + TS</title>
|
8 |
+
</head>
|
9 |
+
<body>
|
10 |
+
<div id="root"></div>
|
11 |
+
<script type="module" src="/src/main.tsx"></script>
|
12 |
+
</body>
|
13 |
+
</html>
|
front/package-lock.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
front/package.json
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "front",
|
3 |
+
"private": true,
|
4 |
+
"version": "0.0.0",
|
5 |
+
"type": "module",
|
6 |
+
"scripts": {
|
7 |
+
"dev": "vite",
|
8 |
+
"build": "tsc -b && vite build",
|
9 |
+
"lint": "eslint .",
|
10 |
+
"preview": "vite preview"
|
11 |
+
},
|
12 |
+
"dependencies": {
|
13 |
+
"@gradio/client": "^1.12.0",
|
14 |
+
"react": "^19.0.0",
|
15 |
+
"react-dom": "^19.0.0"
|
16 |
+
},
|
17 |
+
"devDependencies": {
|
18 |
+
"@eslint/js": "^9.19.0",
|
19 |
+
"@types/react": "^19.0.8",
|
20 |
+
"@types/react-dom": "^19.0.3",
|
21 |
+
"@vitejs/plugin-react": "^4.3.4",
|
22 |
+
"eslint": "^9.19.0",
|
23 |
+
"eslint-plugin-react-hooks": "^5.0.0",
|
24 |
+
"eslint-plugin-react-refresh": "^0.4.18",
|
25 |
+
"globals": "^15.14.0",
|
26 |
+
"typescript": "~5.7.2",
|
27 |
+
"typescript-eslint": "^8.22.0",
|
28 |
+
"vite": "^6.1.0"
|
29 |
+
}
|
30 |
+
}
|
front/public/vite.svg
ADDED
|
front/src/App.css
ADDED
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#root {
|
2 |
+
max-width: 1280px;
|
3 |
+
margin: 0 auto;
|
4 |
+
padding: 2rem;
|
5 |
+
text-align: center;
|
6 |
+
}
|
7 |
+
|
8 |
+
.logo {
|
9 |
+
height: 6em;
|
10 |
+
padding: 1.5em;
|
11 |
+
will-change: filter;
|
12 |
+
transition: filter 300ms;
|
13 |
+
}
|
14 |
+
.logo:hover {
|
15 |
+
filter: drop-shadow(0 0 2em #646cffaa);
|
16 |
+
}
|
17 |
+
.logo.react:hover {
|
18 |
+
filter: drop-shadow(0 0 2em #61dafbaa);
|
19 |
+
}
|
20 |
+
|
21 |
+
@keyframes logo-spin {
|
22 |
+
from {
|
23 |
+
transform: rotate(0deg);
|
24 |
+
}
|
25 |
+
to {
|
26 |
+
transform: rotate(360deg);
|
27 |
+
}
|
28 |
+
}
|
29 |
+
|
30 |
+
@media (prefers-reduced-motion: no-preference) {
|
31 |
+
a:nth-of-type(2) .logo {
|
32 |
+
animation: logo-spin infinite 20s linear;
|
33 |
+
}
|
34 |
+
}
|
35 |
+
|
36 |
+
.card {
|
37 |
+
padding: 2em;
|
38 |
+
}
|
39 |
+
|
40 |
+
.read-the-docs {
|
41 |
+
color: #888;
|
42 |
+
}
|
front/src/App.tsx
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
//import { useState } from 'react'
|
2 |
+
import reactLogo from './assets/react.svg'
|
3 |
+
import viteLogo from '/vite.svg'
|
4 |
+
import './App.css'
|
5 |
+
import { Client } from '@gradio/client';
|
6 |
+
|
7 |
+
function App() {
|
8 |
+
// const [count, setCount] = useState(0)
|
9 |
+
const count = 0;
|
10 |
+
|
11 |
+
const test = async () => {
|
12 |
+
const client = await Client.connect("ngxson/kokoro-podcast-generator");
|
13 |
+
const result = await client.predict("/tts", {
|
14 |
+
text: "Hello!!",
|
15 |
+
voice: "af_heart",
|
16 |
+
speed: 0.5,
|
17 |
+
});
|
18 |
+
|
19 |
+
console.log(result.data);
|
20 |
+
};
|
21 |
+
|
22 |
+
return (
|
23 |
+
<>
|
24 |
+
<div>
|
25 |
+
<a href="https://vite.dev" target="_blank">
|
26 |
+
<img src={viteLogo} className="logo" alt="Vite logo" />
|
27 |
+
</a>
|
28 |
+
<a href="https://react.dev" target="_blank">
|
29 |
+
<img src={reactLogo} className="logo react" alt="React logo" />
|
30 |
+
</a>
|
31 |
+
</div>
|
32 |
+
<h1>Vite + React</h1>
|
33 |
+
<div className="card">
|
34 |
+
<button onClick={() => test()}>
|
35 |
+
count is {count}
|
36 |
+
</button>
|
37 |
+
<p>
|
38 |
+
Edit <code>src/App.tsx</code> and save to test HMR
|
39 |
+
</p>
|
40 |
+
</div>
|
41 |
+
<p className="read-the-docs">
|
42 |
+
Click on the Vite and React logos to learn more
|
43 |
+
</p>
|
44 |
+
</>
|
45 |
+
)
|
46 |
+
}
|
47 |
+
|
48 |
+
export default App
|
front/src/assets/react.svg
ADDED
|
front/src/index.css
ADDED
@@ -0,0 +1,68 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
:root {
|
2 |
+
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
|
3 |
+
line-height: 1.5;
|
4 |
+
font-weight: 400;
|
5 |
+
|
6 |
+
color-scheme: light dark;
|
7 |
+
color: rgba(255, 255, 255, 0.87);
|
8 |
+
background-color: #242424;
|
9 |
+
|
10 |
+
font-synthesis: none;
|
11 |
+
text-rendering: optimizeLegibility;
|
12 |
+
-webkit-font-smoothing: antialiased;
|
13 |
+
-moz-osx-font-smoothing: grayscale;
|
14 |
+
}
|
15 |
+
|
16 |
+
a {
|
17 |
+
font-weight: 500;
|
18 |
+
color: #646cff;
|
19 |
+
text-decoration: inherit;
|
20 |
+
}
|
21 |
+
a:hover {
|
22 |
+
color: #535bf2;
|
23 |
+
}
|
24 |
+
|
25 |
+
body {
|
26 |
+
margin: 0;
|
27 |
+
display: flex;
|
28 |
+
place-items: center;
|
29 |
+
min-width: 320px;
|
30 |
+
min-height: 100vh;
|
31 |
+
}
|
32 |
+
|
33 |
+
h1 {
|
34 |
+
font-size: 3.2em;
|
35 |
+
line-height: 1.1;
|
36 |
+
}
|
37 |
+
|
38 |
+
button {
|
39 |
+
border-radius: 8px;
|
40 |
+
border: 1px solid transparent;
|
41 |
+
padding: 0.6em 1.2em;
|
42 |
+
font-size: 1em;
|
43 |
+
font-weight: 500;
|
44 |
+
font-family: inherit;
|
45 |
+
background-color: #1a1a1a;
|
46 |
+
cursor: pointer;
|
47 |
+
transition: border-color 0.25s;
|
48 |
+
}
|
49 |
+
button:hover {
|
50 |
+
border-color: #646cff;
|
51 |
+
}
|
52 |
+
button:focus,
|
53 |
+
button:focus-visible {
|
54 |
+
outline: 4px auto -webkit-focus-ring-color;
|
55 |
+
}
|
56 |
+
|
57 |
+
@media (prefers-color-scheme: light) {
|
58 |
+
:root {
|
59 |
+
color: #213547;
|
60 |
+
background-color: #ffffff;
|
61 |
+
}
|
62 |
+
a:hover {
|
63 |
+
color: #747bff;
|
64 |
+
}
|
65 |
+
button {
|
66 |
+
background-color: #f9f9f9;
|
67 |
+
}
|
68 |
+
}
|
front/src/main.tsx
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import { StrictMode } from 'react'
|
2 |
+
import { createRoot } from 'react-dom/client'
|
3 |
+
import './index.css'
|
4 |
+
import App from './App.tsx'
|
5 |
+
|
6 |
+
if (!localStorage.getItem('debug')) {
|
7 |
+
|
8 |
+
createRoot(document.getElementById('root')!).render(
|
9 |
+
<StrictMode>
|
10 |
+
<App />
|
11 |
+
</StrictMode>,
|
12 |
+
)
|
13 |
+
|
14 |
+
}
|
front/src/vite-env.d.ts
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
/// <reference types="vite/client" />
|
front/tsconfig.app.json
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"compilerOptions": {
|
3 |
+
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
4 |
+
"target": "ES2020",
|
5 |
+
"useDefineForClassFields": true,
|
6 |
+
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
7 |
+
"module": "ESNext",
|
8 |
+
"skipLibCheck": true,
|
9 |
+
|
10 |
+
/* Bundler mode */
|
11 |
+
"moduleResolution": "bundler",
|
12 |
+
"allowImportingTsExtensions": true,
|
13 |
+
"isolatedModules": true,
|
14 |
+
"moduleDetection": "force",
|
15 |
+
"noEmit": true,
|
16 |
+
"jsx": "react-jsx",
|
17 |
+
|
18 |
+
/* Linting */
|
19 |
+
"strict": true,
|
20 |
+
"noUnusedLocals": true,
|
21 |
+
"noUnusedParameters": true,
|
22 |
+
"noFallthroughCasesInSwitch": true,
|
23 |
+
"noUncheckedSideEffectImports": true
|
24 |
+
},
|
25 |
+
"include": ["src"]
|
26 |
+
}
|
front/tsconfig.json
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"files": [],
|
3 |
+
"references": [
|
4 |
+
{ "path": "./tsconfig.app.json" },
|
5 |
+
{ "path": "./tsconfig.node.json" }
|
6 |
+
]
|
7 |
+
}
|
front/tsconfig.node.json
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"compilerOptions": {
|
3 |
+
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
|
4 |
+
"target": "ES2022",
|
5 |
+
"lib": ["ES2023"],
|
6 |
+
"module": "ESNext",
|
7 |
+
"skipLibCheck": true,
|
8 |
+
|
9 |
+
/* Bundler mode */
|
10 |
+
"moduleResolution": "bundler",
|
11 |
+
"allowImportingTsExtensions": true,
|
12 |
+
"isolatedModules": true,
|
13 |
+
"moduleDetection": "force",
|
14 |
+
"noEmit": true,
|
15 |
+
|
16 |
+
/* Linting */
|
17 |
+
"strict": true,
|
18 |
+
"noUnusedLocals": true,
|
19 |
+
"noUnusedParameters": true,
|
20 |
+
"noFallthroughCasesInSwitch": true,
|
21 |
+
"noUncheckedSideEffectImports": true
|
22 |
+
},
|
23 |
+
"include": ["vite.config.ts"]
|
24 |
+
}
|
front/vite.config.ts
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import { defineConfig } from 'vite'
|
2 |
+
import react from '@vitejs/plugin-react'
|
3 |
+
|
4 |
+
// https://vite.dev/config/
|
5 |
+
export default defineConfig({
|
6 |
+
plugins: [react()],
|
7 |
+
})
|