webapp/tsconfig.json
2024-07-13 20:15:41 +03:00

25 lines
562 B
JSON

{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"esModuleInterop": true,
"allowJs": true,
"strict": true,
"noEmit": true,
"types": ["vinxi/types/client"],
"resolveJsonModule": true,
"skipLibCheck": true,
"isolatedModules": true,
"lib": ["DOM", "ESNext"],
"paths": {
"~/*": ["./src/*"],
"@/*": ["./public/*"]
}
},
"exclude": ["./src/pages"]
}