feat(static): use webpack instead of vite

This commit is contained in:
2026-07-04 21:04:42 +03:00
parent bad5dff2b2
commit 0008e99c66
9 changed files with 2024 additions and 660 deletions

14
static/tsconfig.json Normal file
View File

@@ -0,0 +1,14 @@
{
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist/",
"noImplicitAny": true,
"module": "esnext",
"moduleResolution": "bundler",
"target": "esnext",
"jsx": "react-jsx",
"allowJs": true
},
"include": ["src/**/*"],
"exclude": ["node_modules"]
}