cards/clients/solid/tsconfig.json

23 lines
414 B
JSON
Raw Normal View History

2024-10-15 21:09:11 -04:00
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"types": [
"vite/client"
],
"noEmit": true,
"isolatedModules": true,
"baseUrl": "./",
"paths": {
"@/*": [
"./src/*"
]
}
}
}