core/tsconfig.json

25 lines
534 B
JSON
Raw Normal View History

2025-05-16 06:23:48 +00:00
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"esModuleInterop": true,
"allowJs": true,
"strict": true,
"noEmit": true,
"types": [],
"resolveJsonModule": true,
"skipLibCheck": true,
"isolatedModules": true,
"lib": ["DOM", "ESNext"],
"paths": {
"~/*": ["panel/admin/*"],
"@/*": ["panel/auth/*"]
}
},
"exclude": []
}