core/tsconfig.json

24 lines
499 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": {
2025-05-16 07:30:02 +00:00
"~/*": ["./panel/*"]
2025-05-16 06:23:48 +00:00
}
},
"exclude": []
}