Files
clan-core/pkgs/webview-ui/app/tsconfig.json

21 lines
433 B
JSON

{
"compilerOptions": {
"strict": true,
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"types": ["vite/client"],
"noEmit": true,
"resolveJsonModule": true,
"allowJs": true,
"isolatedModules": true,
"paths": {
"@/*": ["./*"]
}
}
}