fix: isolate frontend typescript config

This commit is contained in:
MythEclipse
2026-05-14 20:26:38 +07:00
parent 71a28085d2
commit 298048aaaf

View File

@@ -1,10 +1,16 @@
{ {
"extends": "../tsconfig.json",
"compilerOptions": { "compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"jsx": "react-jsx", "jsx": "react-jsx",
"lib": ["ES2020", "DOM", "DOM.Iterable"], "lib": ["ES2020", "DOM", "DOM.Iterable"],
"types": ["vite/client"] "types": ["vite/client"],
"noEmit": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true
}, },
"include": ["src"], "include": ["src/**/*", "vite.config.ts"]
"references": [{ "path": "../tsconfig.json" }]
} }