fix: isolate frontend typescript config

This commit is contained in:
MythEclipse
2026-05-14 20:26:38 +07:00
parent 71a28085d2
commit 298048aaaf
+10 -4
View File
@@ -1,10 +1,16 @@
{
"extends": "../tsconfig.json",
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"jsx": "react-jsx",
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"types": ["vite/client"]
"types": ["vite/client"],
"noEmit": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true
},
"include": ["src"],
"references": [{ "path": "../tsconfig.json" }]
"include": ["src/**/*", "vite.config.ts"]
}