Files
GMW/services/frontend/tsconfig.json
T

21 lines
463 B
JSON
Raw 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"],
"types": ["astro/client"],
2026-05-14 20:26:38 +07:00
"noEmit": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"paths": {
"~/*": ["src/*"]
}
2026-05-14 20:24:41 +07:00
},
"include": ["src/**/*", "astro.config.mjs"]
2026-05-14 20:24:41 +07:00
}