Files

17 lines
395 B
JSON
Raw Permalink Normal View History

2026-05-14 20:24:41 +07:00
{
"compilerOptions": {
2026-05-14 20:26:38 +07:00
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
2026-05-14 20:24:41 +07:00
"jsx": "react-jsx",
"lib": ["ES2020", "DOM", "DOM.Iterable"],
2026-05-14 20:26:38 +07:00
"types": ["vite/client"],
"noEmit": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true
2026-05-14 20:24:41 +07:00
},
2026-05-14 20:26:38 +07:00
"include": ["src/**/*", "vite.config.ts"]
2026-05-14 20:24:41 +07:00
}