Files
dc-recorder/frontend/tsconfig.json

17 lines
395 B
JSON
Raw Normal View History

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